-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.24 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
{
"name": "qba-js",
"version": "0.0.32",
"description": "question bank analyzer",
"types": "./lib/src/export.d.ts",
"main": "./dist/index.js",
"jsdelivr": "./dist/index.js",
"files": [
"lib",
"dist"
],
"directories": {
"test": "tests"
},
"scripts": {
"build": "pnpm format && tsc && vite build && npm run build:docs",
"push:docs": "git add ./docs && git commit -m \"update docs\" && git push origin main",
"pub": "npm run build && npm run push:docs && npm version patch && npm publish && git push origin main --tags",
"lint": "pnpm format && eslint ./packages --ext .ts,.tsx,.js,.jsx --fix",
"format": "prettier -c ./.prettierrc.json **/*.ts --write",
"build:docs": "typedoc src/export.ts"
},
"author": "enncy",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/enncy/qba-js.git"
},
"bugs": {
"url": "https://github.com/enncy/qba-js/issues"
},
"homepage": "https://github.com/enncy/qba-js#readme",
"devDependencies": {
"@types/node": "^20.9.0",
"prettier": "^3.0.3",
"ts-node": "^10.9.2",
"typedoc": "^0.25.3",
"typedoc-plugin-markdown": "^3.17.1",
"typedoc-theme-hierarchy": "^4.1.2",
"typescript": "^5.2.2",
"vite": "^4.5.0"
},
"dependencies": {
"xlsx": "^0.18.5"
}
}