-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1.06 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
{
"name": "rollup-build-lib-template",
"version": "0.0.1",
"description": "rollup build lib template",
"main": "dist/index.js",
"module": "dist/index.es.js",
"types": "dist/index.d.ts",
"scripts": {
"dev": "rollup -c -w",
"build": "pnpm test && rollup -c",
"test": "pnpm lint && jest --config",
"lint": "eslint src --ext .ts,.tsx",
"preinstall": "npx only-allow pnpm"
},
"repository": "[email protected]:quliangen/rollup-build-lib-template.git",
"author": "quliangen",
"license": "MIT",
"devDependencies": {
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.0.6",
"@rollup/plugin-typescript": "^8.3.0",
"@types/jest": "^27.0.3",
"@types/node": "^16.11.11",
"@typescript-eslint/eslint-plugin": "^5.5.0",
"@typescript-eslint/parser": "^5.5.0",
"acorn-jsx": "^5.3.2",
"eslint": "^8.3.0",
"jest": "^27.4.3",
"lint-staged": "^12.1.2",
"prettier": "^2.5.0",
"rollup": "^2.60.2",
"ts-jest": "^27.0.7",
"typescript": "^4.5.2"
}
}