-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 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
70
71
72
73
74
75
76
77
{
"name": "@kevisual/store",
"version": "0.0.1-alpha.10",
"main": "dist/store.js",
"module": "dist/store.js",
"types": "dist/store.d.ts",
"private": false,
"type": "module",
"scripts": {
"dev": "rollup -c -w",
"build": "npm run clean && rollup -c",
"build:app": "npm run build && rsync dist/* ../deploy/dist",
"clean": "rm -rf dist"
},
"files": [
"dist"
],
"keywords": [
"kevisual",
"query"
],
"author": "abearxiong",
"license": "ISC",
"description": "",
"devDependencies": {
"@kevisual/types": "link:../types",
"@rollup/plugin-commonjs": "^28.0.1",
"@rollup/plugin-node-resolve": "^15.3.0",
"@rollup/plugin-typescript": "^12.1.1",
"@types/lodash-es": "^4.17.12",
"fast-deep-equal": "^3.1.3",
"immer": "^10.1.1",
"lodash-es": "^4.17.21",
"nanoid": "^5.0.9",
"rollup": "^4.27.4",
"rollup-plugin-dts": "^6.1.1",
"ts-node": "^10.9.2",
"tslib": "^2.8.1",
"typescript": "^5.7.2",
"zustand": "^5.0.1"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/abearxiong/kevisual-store.git"
},
"exports": {
".": {
"import": "./dist/store.js",
"require": "./dist/store.js"
},
"./config": {
"import": "./dist/web-config.js",
"require": "./dist/web-config.js"
},
"./context": {
"import": "./dist/web-context.js",
"require": "./dist/web-context.js"
},
"./page": {
"import": "./dist/web-page.js",
"require": "./dist/web-page.js"
},
"./web": {
"import": "./dist/web.js",
"require": "./dist/web.js"
}
},
"dependencies": {
"@kevisual/router": "0.0.6-alpha-4",
"@rollup/plugin-terser": "^0.4.4",
"eventemitter3": "^5.0.1",
"path-to-regexp": "^8.2.0"
}
}