-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.12 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
{
"name": "lightningcss-plugin-px-to-viewport",
"version": "0.0.4",
"type": "module",
"packageManager": "[email protected]",
"description": "A lightningcss plugin that converts px to viewport width",
"keywords": [
"lightningcss",
"plugin",
"px",
"viewport",
"width"
],
"homepage": "https://github.com/unnok/lightningcss-plugin-px-to-viewport",
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"main": "./dist/index.cjs",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"scripts": {
"dev": "unbuild --stub",
"build": "unbuild",
"test": "vitest",
"release": "bumpp -r",
"typecheck": "tsc --noEmit"
},
"files": [
"dist"
],
"dependencies": {
"lightningcss": "^1.22.1"
},
"devDependencies": {
"@penjj/eslint-config": "^0.3.7",
"@penjj/prettier-config": "^0.3.7",
"bumpp": "^9.2.1",
"typescript": "^5.3.3",
"unbuild": "^2.0.0",
"vitest": "^0.33.0"
},
"eslintConfig": {
"extends": "@penjj"
},
"prettier": "@penjj/prettier-config"
}