-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
46 lines (46 loc) · 1.35 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
{
"name": "vite-plugin-shadow-dom-css",
"version": "0.0.2",
"license": "MIT",
"author": "aui",
"files": [
"dist",
"src"
],
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"scripts": {
"dev": "tsc -p . -w --incremental",
"build": "rimraf dist && npm run build-bundle && npm run build-runtime && npm run build-types",
"build-runtime": "cp -f src/style-provider-runtime.js dist",
"build-bundle": "unbuild",
"build-types": "tsc -p . --emitDeclarationOnly --outDir temp && api-extractor run && rimraf temp",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s --commit-path ."
},
"engines": {
"node": ">=12.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/web-widget/vite-plugin-shadow-dom-css.git"
},
"bugs": {
"url": "https://github.com/web-widget/vite-plugin-shadow-dom-css/issues"
},
"homepage": "https://github.com/web-widget/vite-plugin-shadow-dom-css#readme",
"devDependencies": {
"@microsoft/api-extractor": "^7.19.3",
"@types/estree": "^0.0.50",
"@types/node": "^17.0.5",
"conventional-changelog": "^3.1.25",
"rimraf": "^3.0.2",
"typescript": "^4.5.4",
"unbuild": "^0.6.9",
"vite": "^2.7.7"
},
"dependencies": {
"@babel/core": "^7.16.5",
"@rollup/pluginutils": "^4.1.2"
}
}