generated from sonofmagic/npm-lib-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 2.57 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
71
72
73
74
75
76
77
{
"name": "npm-lib-rollup-template",
"version": "1.0.0",
"description": "npm-lib-rollup-template",
"main": "dist/index.js",
"module": "dist/index.es.js",
"types": "types/index.d.ts",
"scripts": {
"dev": "pnpm clean && pnpm dts && cross-env NODE_ENV=development rollup --config rollup.config.ts --configPlugin typescript -w",
"build": "pnpm clean && pnpm dts && cross-env NODE_ENV=production rollup --config rollup.config.ts --configPlugin typescript",
"build:tsc": "cross-env NODE_ENV=development tsc --build tsconfig.json",
"dts": "tsc --emitDeclarationOnly -p tsconfig.dts.json",
"test": "cross-env NODE_OPTIONS=--experimental-vm-modules jest",
"init:rename": "node scripts/init/rename.js",
"init:bin": "node scripts/init/bin.js",
"clean": "node scripts/clean.js",
"format": "pnpm prettier --check \"src/**/*.{ts,js}\" -w",
"ls:pack": "npm pack --dry-run",
"prepare": "ts-patch install -s",
"preinstall": "npx only-allow pnpm",
"raw": "ts-node test/build.js"
},
"packageManager": "[email protected]",
"repository": {
"type": "git",
"url": "git+https://github.com/sonofmagic/npm-lib-rollup-template.git"
},
"files": [
"dist",
"types"
],
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"keywords": [],
"author": "SonOfMagic <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/sonofmagic/npm-lib-rollup-template/issues"
},
"homepage": "https://github.com/sonofmagic/npm-lib-rollup-template#readme",
"devDependencies": {
"@icebreakers/eslint-config-ts": "^1.0.4",
"@rollup/plugin-alias": "^5.0.0",
"@rollup/plugin-commonjs": "^25.0.0",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "^15.0.2",
"@rollup/plugin-replace": "^5.0.2",
"@rollup/plugin-terser": "^0.4.1",
"@rollup/plugin-typescript": "^11.1.1",
"@tsconfig/recommended": "^1.0.2",
"@types/jest": "^29.5.1",
"@types/lodash": "^4.14.194",
"@types/lodash-es": "^4.17.7",
"@types/node": "^20.1.4",
"cross-env": "^7.0.3",
"defu": "^6.1.2",
"del": "^6.1.1",
"eslint": "8.40.0",
"jest": "^29.5.0",
"lodash": "^4.17.21",
"lodash-es": "^4.17.21",
"only-allow": "^1.1.1",
"prettier": "^2.8.8",
"rollup": "^3.21.7",
"rollup-plugin-visualizer": "^5.9.0",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"ts-patch": "^2.1.0",
"tsconfig-paths": "^4.2.0",
"tslib": "^2.5.0",
"typescript": "^4.9.5",
"typescript-transform-paths": "^3.4.6",
"vite": "^4.3.5"
}
}