-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
40 lines (40 loc) · 1.02 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
{
"name": "codemetrica",
"version": "0.0.1",
"description": "",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/types/index.d.ts",
"files": [
"dist",
"README.md"
],
"scripts": {
"test": "jest",
"dev": "cd example && npx tsx index.ts",
"docs": "rm -rf site/static/api && npx typedoc && hugo",
"build:esm": "tsc -p tsconfig.json",
"build:cjs": "tsc -p tsconfig.cjs.json",
"build": "rm -rf dist/* && npm run build:esm && npm run build:cjs"
},
"keywords": [],
"type": "module",
"author": "Rafed Muhammad Yasir",
"license": "GPL-3.0",
"dependencies": {
"@types/antlr4": "^4.11.6",
"@vscode/vscode-languagedetection": "^1.0.22",
"antlr4": "4.13.2",
"typescript-collections": "^1.3.3"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"@types/jest": "^29.5.13",
"jest": "^29.7.0",
"ts-jest": "^29.2.5",
"tsx": "^4.19.1",
"typedoc": "^0.26.7",
"typedoc-theme-hierarchy": "^5.0.0",
"typescript": "^5.6.2"
}
}