-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.31 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
{
"name": "@kevisual/query",
"version": "0.0.7-alpha.3",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"private": false,
"type": "module",
"scripts": {
"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": {
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-typescript": "^11.1.6",
"rollup": "^4.21.2",
"ts-node": "^10.9.2",
"tslib": "^2.7.0",
"typescript": "^5.5.4",
"zustand": "^4.5.5",
"rollup-plugin-dts": "^6.1.1"
},
"packageManager": "[email protected]+sha1.4ba7fc5c6e704fce2066ecbfb0b0d8976fe62447",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/abearxiong/kevisual-query.git"
},
"exports": {
".": {
"import": "./dist/query-browser.js",
"require": "./dist/query-browser.js"
},
"./query": {
"import": "./dist/query.js",
"require": "./dist/query.js"
},
"./ws": {
"import": "./dist/query-ws.js",
"require": "./dist/query-ws.js"
}
},
"dependencies": {}
}