-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
70 lines (70 loc) · 2.3 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "@ui5/dts-generator",
"description": "Generates TypeScript type definitions from UI5 api.json files",
"version": "3.3.1",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "[email protected]:SAP/ui5-typescript.git",
"directory": "packages/dts-generator"
},
"type": "module",
"main": "dist/index.js",
"bin": {
"@ui5/dts-generator": "dist/index.js",
"ui5-dts-generator": "dist/index.js",
"ui5-download-apijson": "dist/download-apijson.js"
},
"types": "dist/index.d.ts",
"files": [
"/dist",
".reuse",
"LICENSES",
"types"
],
"dependencies": {
"@definitelytyped/dtslint": "latest",
"@definitelytyped/eslint-plugin": "latest",
"@ui5/logger": "^3.0.0",
"argparse": "^2.0.1",
"es-main": "^1.3.0",
"fs-extra": "11.2.0",
"lodash": "4.17.21",
"lodash.combinations": "18.11.1",
"node-fetch": "^3.3.2",
"prettier": "3.3.2",
"resolve": "^1.22.8",
"sanitize-html": "2.13.0",
"strip-json-comments": "^5.0.1",
"typescript": "^5.5.2"
},
"devDependencies": {
"@microsoft/api-extractor": "^7.47.0",
"@types/argparse": "^2.0.16",
"@types/lodash": "4.17.5",
"@types/sanitize-html": "2.11.0",
"@types/urijs": "1.19.25",
"copyfiles": "^2.4.1",
"del-cli": "^5.1.0",
"npm-run-all": "^4.1.5"
},
"scripts": {
"clean": "del-cli -f dist",
"copy-files": "copyfiles -V -u 1 \"src/**/*.json\" \"src/**/core-preamble.d.ts\" \"src/**/dtslintConfig/.npm___ignore\" \"src/**/dtslintConfig/openui5-tests.ts\" \"src/**/dtslintConfig/.eslintrc.json\" \"src/**/dtslintConfig/forDefinitelyTypedDir/.eslintrc.cjs\" \"src/**/api-json.d.ts\" dist/",
"prebuild": "npm-run-all clean copy-files",
"build": "tsc",
"postbuild": "npm-run-all build-api-types clean-implementation-types",
"build-api-types": "api-extractor run --local --verbose",
"clean-implementation-types": "del-cli -f \"dist/**/*.d.ts.map\" \"dist/**/*.d.ts\" \"!dist/**/index.d.ts\" \"!dist/**/core-preamble.d.ts\"",
"ci": "npm-run-all test:*",
"test:apis": "tsc ./src/types/api-json.d.ts ./src/types/ast.d.ts ./src/types/ui5-logger-types.d.ts",
"prewatch": "npm-run-all clean copy-files",
"watch": "tsc -w"
},
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=16.18.0"
}
}