-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.81 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
62
63
64
65
66
67
68
69
{
"name": "sveltejs-valtio",
"version": "0.0.3",
"description": "sveltejs valtio",
"scripts": {
"build": "rollup -c --bundleConfigAsCjs",
"size": "npm run build && size-limit",
"lint": "eslint --ext .ts,.tsx src --color",
"test": "vitest",
"verify-commit": "verify-commit-msg",
"prepare": "git-scm-hooks",
"release": "bumpp -r && npm publish"
},
"devDependencies": {
"@hunghg255/eslint-config-ts": "^0.0.2",
"@rollup/plugin-commonjs": "^25.0.4",
"@rollup/plugin-node-resolve": "^15.2.1",
"@rollup/plugin-terser": "^0.4.3",
"@rollup/plugin-typescript": "^11.1.3",
"@size-limit/preset-small-lib": "^8.2.6",
"@types/node": "^20.6.0",
"bumpp": "^9.2.0",
"eslint": "^8.49.0",
"git-scm-hooks": "^0.0.7",
"prettier": "^2.8.8",
"rollup": "^3.29.1",
"rollup-plugin-dts": "^5.3.1",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-svelte": "^7.1.6",
"size-limit": "^8.2.6",
"svelte-preprocess": "^5.0.4",
"typescript": "^4.9.5",
"verify-commit-msg": "^0.0.10"
},
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"files": [
"dist"
],
"types": "dist/index.d.ts",
"typings": "dist/index.d.ts",
"author": "hunghg255 <[email protected]>",
"license": "MIT",
"browserslist": [
">0.2%",
"not dead",
"not op_mini all"
],
"keywords": [
"sveltejs",
"valtio",
"state management"
],
"homepage": "https://github.com/hunghg255/sveltejs-valtio",
"repository": {
"type": "git",
"url": "https://github.com/hunghg255/sveltejs-valtio"
},
"bugs": {
"url": "https://github.com/hunghg255/sveltejs-valtio/issues"
},
"git-hooks": {
"pre-commit": "npm run lint",
"commit-msg": "npm run verify-commit"
},
"dependencies": {
"valtio": "^1.11.2"
}
}