This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
Doric/doric-web/package.json

41 lines
1.0 KiB
JSON
Raw Normal View History

2019-12-18 16:11:02 +08:00
{
2019-12-31 18:31:47 +08:00
"name": "doric-web",
2021-01-28 14:40:12 +08:00
"version": "0.6.13",
2019-12-31 18:31:47 +08:00
"description": "Doric library for Web",
2020-01-06 13:13:06 +08:00
"main": "dist/index.js",
2019-12-18 16:11:02 +08:00
"scripts": {
2019-12-19 10:42:57 +08:00
"test": "echo \"Error: no test specified\" && exit 1",
2020-01-06 14:18:02 +08:00
"build": "tsc -p .&& rollup -c",
"prepublish": "npm run build"
2019-12-18 16:11:02 +08:00
},
"repository": {
"type": "git",
2019-12-31 18:31:47 +08:00
"url": "git+https://github.com/doric-pub/doric.git"
2019-12-18 16:11:02 +08:00
},
"author": "pengfeizhou",
"license": "Apache-2.0",
"bugs": {
2019-12-31 18:31:47 +08:00
"url": "https://github.com/doric-pub/doric/issues"
2019-12-18 16:11:02 +08:00
},
2019-12-31 18:31:47 +08:00
"homepage": "https://github.com/doric-pub/doric#readme",
2019-12-18 16:11:02 +08:00
"dependencies": {
2021-01-06 11:59:37 +08:00
"axios": ">=0.21.1",
2021-10-29 14:30:00 +08:00
"smoothscroll-polyfill": "^0.4.4"
2020-01-10 14:56:30 +08:00
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
2021-04-20 18:03:26 +08:00
},
2021-10-29 14:30:00 +08:00
"peerDependencies": {
"doric": ">=0.9.0"
},
2021-04-20 18:03:26 +08:00
"devDependencies": {
2021-10-29 14:30:00 +08:00
"typescript": "^4.2.2",
"rollup": "^2.24.0",
"doric": "file:../doric-js",
"@types/smoothscroll-polyfill": "^0.3.1",
"@rollup/plugin-commonjs": "^14.0.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^8.4.0"
2019-12-18 16:11:02 +08:00
}
2020-01-10 16:19:53 +08:00
}