-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
61 lines (61 loc) · 1.44 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "react-slugify",
"version": "4.0.1",
"description": "Slugify a React node",
"type": "module",
"main": "./dist/slugify.js",
"module": "./dist/slugify.js",
"types": "./dist/slugify.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/slugify.d.ts",
"default": "./dist/slugify.js"
},
"require": {
"types": "./dist/slugify.d.cts",
"default": "./dist/slugify.cjs"
}
}
},
"files": [
"src",
"dist",
"!**/__tests__"
],
"scripts": {
"preversion": "yarn test",
"prepublishOnly": "yarn publint && yarn build",
"build": "tsup src/slugify.ts --format cjs,esm --dts --sourcemap --clean",
"test": "vitest run",
"test:watch": "vitest watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/martpie/react-slugify.git"
},
"keywords": [
"react",
"slug",
"slugify"
],
"author": "Pierre de la Martiniere <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/martpie/react-slugify/issues"
},
"homepage": "https://github.com/martpie/react-slugify#readme",
"devDependencies": {
"@arethetypeswrong/cli": "^0.15.3",
"@types/diacritics": "^1.3.3",
"@types/react": "^18.3.1",
"publint": "^0.2.7",
"react": "^18.3.1",
"tsup": "^8.0.2",
"typescript": "^5.4.5",
"vitest": "^1.5.2"
},
"dependencies": {
"diacritics": "^1.3.0"
}
}