generated from sonofmagic/npm-lib-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
88 lines (88 loc) · 2.67 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
78
79
80
81
82
83
84
85
86
87
88
{
"name": "css.unescape",
"version": "1.0.1",
"description": "CSS.unescape",
"main": "dist/index.js",
"module": "dist/index.mjs",
"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:dev": "vitest",
"test": "vitest run",
"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",
"release": "bumpp"
},
"packageManager": "[email protected]",
"repository": {
"type": "git",
"url": "git+https://github.com/sonofmagic/CSS.unescape.git"
},
"files": [
"dist",
"types"
],
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"keywords": [
"unescape",
"css",
"selector",
"css.escape",
"string",
"unicode",
"identifier"
],
"author": "SonOfMagic <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/sonofmagic/CSS.unescape/issues"
},
"homepage": "https://github.com/sonofmagic/CSS.unescape#readme",
"devDependencies": {
"@rollup/plugin-alias": "^5.0.1",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-json": "^6.0.1",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-replace": "^5.0.5",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.5",
"@tsconfig/recommended": "^1.0.3",
"@types/css.escape": "^1.5.2",
"@types/lodash": "^4.14.201",
"@types/lodash-es": "^4.17.11",
"@types/node": "^20.9.0",
"@vitest/coverage-v8": "^0.34.6",
"bumpp": "^9.2.0",
"cross-env": "^7.0.3",
"css.escape": "^1.5.1",
"defu": "^6.1.3",
"del": "^7.1.0",
"eslint": "8.53.0",
"eslint-config-icebreaker": "^1.2.2",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.1",
"lodash": "^4.17.21",
"lodash-es": "^4.17.21",
"only-allow": "^1.2.1",
"prettier": "^3.0.3",
"rollup": "^4.4.0",
"rollup-plugin-visualizer": "^5.9.2",
"ts-node": "^10.9.1",
"ts-patch": "^3.0.2",
"tsconfig-paths": "^4.2.0",
"tslib": "^2.6.2",
"typescript": "^5.2.2",
"typescript-transform-paths": "^3.4.6",
"vitest": "^0.34.6"
}
}