-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 967 Bytes
/
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
{
"name": "@lpc-lang/bedoc",
"version": "1.0.7",
"description": "BeDoc parser for LPC",
"repository": {
"type": "git",
"url": "https://github.com/jlchmura/lpc-bedoc"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc -b && node ./build.js",
"prepack": "npm run build",
"start": "npm run build && npx bedoc"
},
"main": "./dist/index.js",
"exports": {
".": "./dist/index.js"
},
"bedoc": {
"modules": [
"./dist/index.js"
],
"printer": "./dist/index.js",
"parser": "./dist/index.js",
"input": [
"../lpc-test2/**/*.c"
],
"output": "docs"
},
"author": "jlchmura",
"license": "MIT",
"dependencies": {
"@gesslar/bedoc": "^1.10.0",
"@lpc-lang/core": "^1.1.27"
},
"devDependencies": {
"@types/node": "^22.13.1",
"esbuild": "^0.25.0",
"esbuild-plugin-copy": "^2.1.1",
"ncp": "^2.0.0",
"typescript": "^5.7.3"
}
}