-
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.43 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.43 KB
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
{
"name": "windicss-runtime-dom",
"version": "3.0.0",
"description": "Enables Windi CSS for any site with one-line code without any build tools - Windi CSS on the browser runtime",
"browser": "dist/index.min.js",
"unpkg": "dist/index.min.js",
"main": "dist/index.min.js",
"jsdelivr": "dist/index.min.js",
"types": "dist/index.d.ts",
"funding": "https://github.com/sponsors/antfu",
"author": "Anthony Fu <anthonyfu117@hotmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/antfu/windicss-runtime-dom/issues"
},
"homepage": "https://github.com/antfu/windicss-runtime-dom#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/antfu/windicss-runtime-dom.git"
},
"keywords": [
"windicss"
],
"files": [
"dist"
],
"scripts": {
"prepublishOnly": "npm run build",
"dev": "npm run build -- --watch",
"build": "rollup -c",
"release": "bumpp --commit --push --tag && npm publish"
},
"devDependencies": {
"@antfu/eslint-config": "^0.7.0",
"@antfu/ni": "^0.7.0",
"@rollup/plugin-commonjs": "^19.0.0",
"@rollup/plugin-node-resolve": "^13.0.0",
"@types/node": "^16.0.0",
"bumpp": "^6.0.6",
"eslint": "^7.30.0",
"rollup": "^2.52.8",
"rollup-plugin-dts": "^3.0.2",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.30.0",
"tslib": "^2.3.0",
"typescript": "^4.3.5",
"windicss": "^3.1.4"
}
}