-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.66 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
{
"name": "tiny-crud",
"version": "1.1.3",
"description": "Lightweight Data Repository Based on Git Issue API",
"main": "dist/bundle.cjs.js",
"module": "dist/bundle.esm.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "jest --coverage",
"prebuild": "rimraf ./dist",
"build": "rollup --config",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs"
},
"author": "Xicheng_Guo",
"license": "MIT",
"files": [
"dist/bundle.cjs.js",
"dist/bundle.esm.js",
"dist/index.d.ts"
],
"keywords": [
"git",
"issue",
"crud",
"data",
"repository",
"api"
],
"homepage": "https://guoxicheng.top/projects/TinyCRUD-Docs",
"repository": {
"type": "git",
"url": "https://github.com/GuoXiCheng/TinyCRUD.git"
},
"devDependencies": {
"@babel/preset-env": "^7.23.3",
"@babel/preset-typescript": "^7.23.3",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-json": "^6.0.1",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-typescript": "^11.1.5",
"@types/crypto-js": "^4.2.1",
"@types/jest": "^29.5.9",
"@types/jsonfile": "^6.1.4",
"@types/wechat-miniprogram": "^3.4.7",
"axios": "^1.6.2",
"axios-mock-adapter": "^1.22.0",
"crypto-js": "^4.2.0",
"dayjs": "^1.11.10",
"dotenv": "^16.3.1",
"jest": "^29.7.0",
"jsonfile": "^6.1.0",
"nyc": "^15.1.0",
"rimraf": "^5.0.5",
"rollup": "^4.3.0",
"rollup-plugin-dts": "^6.1.0",
"ts-jest": "^29.1.1",
"tslib": "^2.6.2",
"typescript": "^5.2.2",
"vitepress": "^1.2.2"
}
}