-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
36 lines (36 loc) · 843 Bytes
/
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
{
"name": "redefine-custom-elements",
"version": "0.1.3",
"license": "MIT",
"author": "Caridy Patiño <caridy@gmail.com>",
"description": "Experimental library to allow re-defining custom elements",
"repository": {
"type": "git",
"url": "https://github.com/caridy/redefine-custom-elements.git"
},
"module": "lib/index.js",
"scripts": {
"prepare": "npm run build",
"clean": "rimraf lib",
"build": "tsc"
},
"files": [
"lib/"
],
"publishConfig": {
"access": "public"
},
"devDependencies": {
"rimraf": "3.0.2",
"tslib": "2.3.1",
"typescript": "4.6.2"
},
"engines": {
"node": ">=16"
},
"engineStrict": true,
"volta": {
"node": "16.13.1",
"yarn": "1.22.11"
}
}