зеркало из https://github.com/microsoft/ts-gyb.git
63 строки
2.0 KiB
JSON
63 строки
2.0 KiB
JSON
{
|
|
"name": "ts-gyb",
|
|
"version": "0.12.2",
|
|
"description": "Generate Native API based on TS interface",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/microsoft/ts-gyb"
|
|
},
|
|
"license": "MIT",
|
|
"homepage": "https://github.com/microsoft/ts-gyb#readme",
|
|
"keywords": [],
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"clean": "rm -rf dist",
|
|
"debug": "ts-node ./src/cli/index",
|
|
"start:example:basic": "npm run debug -- --config demo/basic/config.json",
|
|
"start:example:mini-editor": "npm run debug -- --config demo/mini-editor/web/config.json",
|
|
"test": "mocha -r ts-node/register test/**/*.ts",
|
|
"lint": "eslint ./src --ext .js,.ts",
|
|
"prettier:write": "prettier --write \"src/**/*.ts\"",
|
|
"prettier:check": "prettier --check \"src/**/*.ts\"",
|
|
"lint:fix": "npm run lint -- --fix && npm run prettier:write",
|
|
"lint:ci": "npm run lint && npm run prettier:check",
|
|
"doc:gen:config": "typedoc --out documentation/generated src/cli/configuration.ts --disableSources && rm documentation/generated/modules.md && rm documentation/generated/README.md"
|
|
},
|
|
"main": "dist/index.js",
|
|
"bin": {
|
|
"ts-gyb": "bin/ts-gyb"
|
|
},
|
|
"files": [
|
|
"dist/**/*.js",
|
|
"dist/**/*.d.ts"
|
|
],
|
|
"devDependencies": {
|
|
"@types/chai": "^4.2.18",
|
|
"@types/mocha": "^9.0.0",
|
|
"@types/mustache": "^4.1.1",
|
|
"@types/uuid": "^8.3.0",
|
|
"@types/yargs": "^15.0.9",
|
|
"@typescript-eslint/eslint-plugin": "^4.9.0",
|
|
"@typescript-eslint/parser": "^4.9.0",
|
|
"chai": "^4.3.4",
|
|
"del": "^5.1.0",
|
|
"eslint": "^7.5.0",
|
|
"eslint-config-airbnb-base": "^14.2.1",
|
|
"eslint-config-prettier": "^7.0.0",
|
|
"eslint-plugin-import": "^2.22.1",
|
|
"mocha": "^9.1.3",
|
|
"prettier": "^2.2.1",
|
|
"ts-node": "^8.10.2",
|
|
"typedoc": "^0.22.11",
|
|
"typedoc-plugin-markdown": "^3.10.4",
|
|
"uuid": "^8.3.2"
|
|
},
|
|
"dependencies": {
|
|
"chalk": "^4.1.1",
|
|
"glob": "^7.1.6",
|
|
"mustache": "^4.2.0",
|
|
"typescript": "^4.3.2",
|
|
"yargs": "^16.1.0"
|
|
}
|
|
}
|