-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.64 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.64 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
{
"name": "atsds",
"description": "A deductive system",
"author": "Hao Zhang <hzhangxyz@outlook.com>",
"license": "AGPL-3.0-or-later",
"repository": {
"type": "git",
"url": "git+https://github.com/USTC-KnowledgeComputingLab/ds.git"
},
"type": "module",
"exports": "./dist/index.mjs",
"main": "dist/index.mjs",
"module": "dist/index.mjs",
"browser": "dist/index.mjs",
"types": "dist/index.d.mts",
"files": [
"dist/index.d.mts",
"dist/index.mjs"
],
"scripts": {
"emcc": "emcc -std=c++20 atsds/ds.cc src/*.cc -Iinclude -lembind -o atsds/ds.mjs --emit-tsd ds.d.mts -O3 -ffast-math -flto -s ALLOW_MEMORY_GROWTH=1 -s SINGLE_FILE=1",
"rollup": "rollup --config rollup.config.mjs",
"build": "run-s emcc rollup",
"test": "cross-env NODE_OPTIONS='$NODE_OPTIONS --experimental-vm-modules' jest --config=jest.config.mjs",
"all": "run-s build test",
"vitepress": "vitepress build",
"docs": "run-s emcc vitepress"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^16.0.3",
"@rollup/plugin-terser": "^1.0.0",
"@rollup/plugin-typescript": "^12.3.0",
"@types/jest": "^30.0.0",
"cross-env": "^10.1.0",
"ejs": "^5.0.2",
"jest": "^30.4.2",
"npm-run-all": "^4.1.5",
"rollup": "^4.60.3",
"rollup-plugin-dts": "^6.4.1",
"@swc/core": "^1.15.33",
"@swc/jest": "^0.2.39",
"tslib": "^2.8.1",
"typescript": "^6.0.3",
"vitepress": "^1.6.4",
"vue": "^3.5.34"
},
"overrides": {
"esbuild": "0.25.0"
}
}