-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
41 lines (41 loc) · 1.05 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
{
"name": "@hunchcloud/live-element",
"version": "0.3.2",
"description": "A custom element to live edit other custom elements",
"main": "dist/live-element.js",
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/hunchcloud/live-element.git"
},
"keywords": [
"custom elements",
"web components",
"live editing",
"playground"
],
"author": "Ping Chen",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/hunchcloud/live-element/issues"
},
"homepage": "https://github.com/hunchcloud/live-element#readme",
"scripts": {
"build": "node scripts/build-css.js && tsc -d",
"build:css": "node scripts/build-css.js",
"release": "rm -rf dist && npm run build && npm publish --access public",
"start": "yarn build:css && parcel example/demo.md"
},
"devDependencies": {
"@types/node": "^13.7.7",
"@types/prismjs": "^1.16.0",
"glob": "^7.1.6",
"marked": "^0.8.0",
"typescript": "^3.8.2"
},
"dependencies": {
"prismjs": "^1.19.0"
}
}