-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
48 lines (48 loc) · 1.03 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
47
48
{
"name": "@enact/jsdoc-to-ts",
"version": "1.0.7",
"description": "Converts inline jsdoc comments to TypeScript .d.ts files",
"main": "index.js",
"author": "Roy Sutton <roy.sutton@lge.com>",
"repository": "https://github.com/enactjs/jsdoc-to-ts",
"license": "Apache-2.0",
"engines": {
"node": ">=16"
},
"type": "module",
"bin": {
"jsdoc-to-ts": "./bin/jsdoc-to-ts.js"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"lint": "enact lint --strict . -- --env=node",
"test": "enact test"
},
"keywords": [
"jsdoc",
"typescript"
],
"eslintConfig": {
"extends": "enact-proxy/strict",
"env": {
"node": true
}
},
"dependencies": {
"documentation": "^14.0.3",
"glob": "^10.4.5",
"jsonata": "^2.0.6",
"loglevel": "^1.9.2",
"minimist": "^1.2.8",
"prettier": "^3.4.2"
},
"overrides": {
"vue-template-compiler": "@vue/compiler-sfc@3.4.31"
},
"devDependencies": {
"eslint-config-enact-proxy": "^1.0.8",
"react": "^19.0.0"
}
}