-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 825 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 825 Bytes
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
{
"name": "style-wrap",
"version": "1.3.0",
"description": "A framework-agnostic web component to simplify styling HTML elements.",
"main": "dist/index.cjs",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "rollup -c",
"watch": "rollup -c -w"
},
"repository": {
"type": "git",
"url": "git+https://github.com/porpoise/style-wrap.git"
},
"author": "Raghav Misra",
"license": "MIT",
"bugs": {
"url": "https://github.com/porpoise/style-wrap/issues"
},
"homepage": "https://github.com/porpoise/style-wrap#readme",
"devDependencies": {
"rollup": "^2.53.1",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.30.0",
"typescript": "^4.3.5"
}
}