generated from sonofmagic/npm-lib-template
-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
117 lines (117 loc) · 3.09 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "postcss-rem-to-responsive-pixel",
"version": "6.0.1",
"description": "Convert rem units to px or rpx units using PostCSS. Based on postcss-pxtorem and postcss-rem-to-pixel, and rewrite with typescript, and support Postcss8",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
},
"./*": "./*"
},
"main": "./dist/index.cjs",
"types": "./dist/index.d.ts",
"module": "./dist/index.mjs",
"files": [
"dist"
],
"typesVersions": {
"*": {
"*": [
"./dist/*",
"./dist/index.d.ts"
]
}
},
"scripts": {
"dev": "pnpm clean && unbuild --sourcemap",
"build": "pnpm clean && unbuild",
"build:tsc": "cross-env NODE_ENV=development tsc --build tsconfig.json",
"test:dev": "vitest",
"test": "vitest run",
"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",
"semantic-release": "semantic-release",
"init:rename": "node scripts/init/rename.js",
"sync": "cnpm sync postcss-rem-to-responsive-pixel"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sonofmagic/postcss-rem-to-responsive-pixel.git"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"keywords": [
"postcss",
"postcss-plugin",
"postcss-rem",
"postcss-pxtorem",
"postcss7",
"postcss8",
"responsive",
"css",
"rem",
"pixel",
"px",
"rpx",
"uni-app",
"uni",
"wechat",
"mp",
"miniprogram",
"小程序",
"微信",
"tailwindcss",
"preset"
],
"author": "SonOfMagic <[email protected]>, cuth, jesstech",
"license": "MIT",
"bugs": {
"url": "https://github.com/sonofmagic/postcss-rem-to-responsive-pixel/issues"
},
"homepage": "https://github.com/sonofmagic/postcss-rem-to-responsive-pixel#readme",
"devDependencies": {
"@tsconfig/recommended": "^1.0.3",
"@types/klaw": "^3.0.6",
"@types/lodash": "^4.14.202",
"@types/lodash-es": "^4.17.12",
"@types/node": "^20.11.24",
"@types/postcss-pxtorem": "^6.0.3",
"@types/semantic-release": "^20.0.6",
"@vitest/coverage-v8": "^2.0.0",
"cross-env": "^7.0.3",
"defu": "^6.1.4",
"del": "^7.1.0",
"eslint": "9.13.0",
"eslint-config-icebreaker": "^1.2.3",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"klaw": "^4.1.0",
"lodash": "^4.17.21",
"lodash-es": "^4.17.21",
"merge": "^2.1.1",
"only-allow": "^1.2.1",
"postcss": "^8.4.35",
"postcss-pxtorem": "^6.1.0",
"prettier": "^3.2.5",
"semantic-release": "^24.0.0",
"ts-node": "^10.9.2",
"ts-patch": "^3.1.2",
"tsconfig-paths": "^4.2.0",
"tslib": "^2.6.2",
"typescript": "^5.3.3",
"typescript-transform-paths": "^3.4.7",
"unbuild": "^2.0.0",
"vitest": "^2.0.0"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=16.6.0"
}
}