-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 936 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 936 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
{
"name": "@stbui/prophet-data-json-server",
"version": "3.0.1",
"description": "用于构建中后台前端应用框架",
"author": "stbui <w431106@163.com>",
"homepage": "https://github.com/stbui/propht#readme",
"license": "ISC",
"main": "lib/index",
"module": "esm/index.js",
"types": "esm/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/stbui/propht.git"
},
"scripts": {
"build": "yarn run build-cjs && yarn run build-esm",
"build-cjs": "rimraf ./lib && tsc",
"build-esm": "rimraf ./esm && tsc --outDir esm --module es2015",
"watch": "rimraf ./lib && tsc --watch"
},
"bugs": {
"url": "https://github.com/stbui/propht/issues"
},
"dependencies": {
"@stbui/prophet-core": "^3.0.1",
"query-string": "^7.1.1"
},
"publishConfig": {
"access": "public"
}
}