-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1003 Bytes
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 1003 Bytes
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
{
"name": "storvice",
"version": "2.0.0",
"type": "module",
"description": "",
"browser": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/*"
],
"exports": {
".": "./dist/index.js",
"./hooks": "./dist/hooks/useStore.js"
},
"scripts": {
"prepare": "npm run build",
"clean": "rm -rf ./dist",
"build": "tsc",
"dev": "tsc -w",
"test": "concurrently -c \"green.bold\" npm:test:*",
"test:types": "tsd -f ./tests/*.test-d.ts && echo No type test failures && exit 0"
},
"author": "Rory Duncan",
"repository": {
"type": "git",
"url": "https://github.com/RoryDuncan/storvice"
},
"license": "ISC",
"devDependencies": {
"@types/react": "^18.2.6",
"concurrently": "^7.6.0",
"prettier": "^2.8.8",
"tsd": "^0.28.1",
"typescript": "^4.9.3"
},
"dependencies": {
"react": "^18.2.0",
"svelte": "^3.59.0"
},
"volta": {
"node": "18.16.0",
"npm": "9.7.2"
}
}