-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.29 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
{
"name": "svelte-restate",
"description": "Immutable store for Svelte with full Typescript support and Redux Devtools integration",
"version": "0.1.6",
"author": "Stepan Lusnikov <[email protected]>",
"license": "MIT",
"repository": "https://github.com/endenwer/svelte-restate.git",
"main": "dist/index",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"keywords": [
"svelte",
"store"
],
"files": [
"dist",
"devtools",
"README.MD"
],
"scripts": {
"docs": "docsify serve",
"build": "rollup -c",
"dev": "rollup -c -w",
"prepublishOnly": "npm run typecheck && npm run test && npm run build",
"test": "mocha --require sucrase/register --recursive src/**/*.test.ts",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"immer": "^9.0.12"
},
"peerDependencies": {
"svelte": "^3.0.0"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^11.2.1",
"@rollup/plugin-typescript": "^8.2.1",
"@types/chai": "^4.2.16",
"@types/mocha": "^8.2.2",
"@types/node": "^14.14.37",
"chai": "^4.3.4",
"docsify-cli": "^4.4.3",
"mocha": "^8.3.2",
"rollup": "^2.44.0",
"rollup-plugin-dts": "^3.0.1",
"sucrase": "^3.17.1",
"svelte": "^3.37.0",
"tslib": "^2.3.1",
"typescript": "^4.2.3"
}
}