-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 954 Bytes
/
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
{
"name": "cadells-vanilla-components",
"author": "Cadell Christo",
"version": "1.5.3",
"license": "MIT",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"engines": {
"node": ">=10"
},
"scripts": {
"build": "tsup",
"release": "np",
"build-release": "npm run build && npm run release",
"test": "echo 'all g'"
},
"size-limit": [
{
"path": "dist/index.js",
"limit": "10 KB"
},
{
"path": "dist/index.mjs",
"limit": "10 KB"
}
],
"dependencies": {
"slugify": "^1.6.5"
},
"devDependencies": {
"@types/react": "^17.0.38",
"@types/react-dom": "^17.0.11",
"@vanilla-extract/css": "^1.6.8",
"@vanilla-extract/esbuild-plugin": "^2.0.2",
"np": "^8.0.4",
"prettier": "^2.5.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"tsup": "^5.11.11",
"typescript": "^4.5.5"
}
}