2019-12-04 14:15:05 +08:00
|
|
|
{
|
|
|
|
"name": "doric",
|
2021-01-28 14:40:12 +08:00
|
|
|
"version": "0.6.13",
|
2019-12-04 14:15:05 +08:00
|
|
|
"description": "The JS Framework of Doric",
|
|
|
|
"main": "bundle/doric-vm.js",
|
2020-01-03 15:34:17 +08:00
|
|
|
"types": "index.d.ts",
|
2019-12-04 14:15:05 +08:00
|
|
|
"scripts": {
|
|
|
|
"test": "echo \"Error: no test specified\" && exit 1",
|
2022-08-11 13:36:18 +08:00
|
|
|
"build": "cp -rf index.web.html bundle/doric-web.html && tsc -p tsconfig.es5.json && mv -f lib-es5/src/ui/view.es5.js lib-es5/src/ui/view.js && tsc -d -p . && rollup -c && dts-bundle-generator -o index.d.ts index.ts --project tsconfig.json --inline-declare-global && node generateDts.js",
|
|
|
|
"build-win32": "cp -rf index.web.html bundle/doric-web.html && tsc -p tsconfig.es5.json && tsc -d -p . && rollup -c && dts-bundle-generator -o index.d.ts index.ts --project tsconfig.json --inline-declare-global && node generateDts.js",
|
2019-12-04 14:15:05 +08:00
|
|
|
"dev": "tsc -w -p . & rollup -c -w",
|
2020-01-15 17:24:11 +08:00
|
|
|
"clean": "rm -rf lib && rm -rf lib-es5 && rm -rf bundle",
|
2020-01-06 10:43:18 +08:00
|
|
|
"prepublish": "npm run build"
|
2019-12-04 14:15:05 +08:00
|
|
|
},
|
|
|
|
"repository": {
|
|
|
|
"type": "https",
|
|
|
|
"url": "https://github.com/doric-pub/doric"
|
|
|
|
},
|
|
|
|
"author": "pengfeizhou",
|
|
|
|
"license": "Apache-2.0",
|
|
|
|
"bugs": {
|
|
|
|
"url": "https://github.com/doric-pub/doric/issues"
|
|
|
|
},
|
|
|
|
"homepage": "https://github.com/doric-pub/doric#readme",
|
|
|
|
"dependencies": {
|
2021-03-02 10:28:33 +08:00
|
|
|
"typescript": "^4.2.2",
|
|
|
|
"ws": "^7.4.3"
|
2020-01-10 14:56:30 +08:00
|
|
|
},
|
|
|
|
"publishConfig": {
|
|
|
|
"registry": "https://registry.npmjs.org"
|
2020-01-15 17:24:11 +08:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2022-07-15 15:59:06 +08:00
|
|
|
"@rollup/plugin-buble": "^0.21.3",
|
|
|
|
"@rollup/plugin-commonjs": "^14.0.0",
|
|
|
|
"@rollup/plugin-node-resolve": "^8.4.0",
|
|
|
|
"@types/core-js": "^2.5.5",
|
2021-10-29 14:30:00 +08:00
|
|
|
"@types/ws": "^7.2.6",
|
|
|
|
"core-js": "^3.9.1",
|
2022-08-11 13:36:18 +08:00
|
|
|
"dts-bundle-generator": "^6.12.0",
|
2021-10-29 14:30:00 +08:00
|
|
|
"proxy-polyfill": "^0.3.2",
|
|
|
|
"reflect-metadata": "^0.1.13",
|
2022-07-15 15:59:06 +08:00
|
|
|
"rollup": "^2.40.0"
|
2019-12-04 14:15:05 +08:00
|
|
|
}
|
2020-01-17 17:17:59 +08:00
|
|
|
}
|