-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.53 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.53 KB
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
{
"name": "@hzhangxyz/ddss",
"description": "Distributed Deductive System Sorts",
"author": "Hao Zhang <hzhangxyz@outlook.com>",
"license": "AGPL-3.0-or-later",
"repository": {
"type": "git",
"url": "git+https://github.com/USTC-KnowledgeComputingLab/ddss.git"
},
"type": "module",
"bin": {
"ddss": "./dist/index.js"
},
"files": [
"dist/index.js"
],
"scripts": {
"rollup": "rollup --config rollup.config.js",
"build": "run-s rollup",
"test": "cross-env NODE_OPTIONS='$NODE_OPTIONS --experimental-vm-modules' jest --config=jest.config.js",
"all": "run-s build test",
"docs": "vitepress build"
},
"dependencies": {
"atsds": "^0.0.21",
"atsds-bnf": "^0.0.21",
"atsds-egg": "^0.0.21",
"commander": "^14.0.3",
"mariadb": "^3.5.2",
"mysql2": "^3.20.0",
"pg": "^8.20.0",
"sequelize": "^6.37.8",
"sqlite3": "^6.0.1"
},
"devDependencies": {
"@rollup/plugin-terser": "^1.0.0",
"@rollup/plugin-typescript": "^12.3.0",
"@types/jest": "^30.0.0",
"@types/node": "^25.5.2",
"cross-env": "^10.1.0",
"@swc/core": "^1.15.24",
"@swc/jest": "^0.2.39",
"jest": "^30.3.0",
"npm-run-all": "^4.1.5",
"rollup": "^4.60.1",
"ts-node": "^10.9.2",
"tslib": "^2.8.1",
"typescript": "^6.0.2",
"vitepress": "^1.6.4"
},
"overrides": {
"esbuild": "0.25.0"
}
}