-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
61 lines (61 loc) · 1.71 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "@lume/live-code",
"description": "A `<live-code>` element for editable code with live output.",
"version": "0.6.6",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"homepage": "http://github.com/lume/live-code#readme",
"scripts": {
"start": "npm run build && npm run examples",
"dev": "lume dev",
"build": "lume build",
"clean": "lume clean",
"examples": "five-server .",
"test": "lume test",
"test:watch": "lume test --watch",
"prettier": "prettier . --write",
"prettier:check": "prettier . --check",
"version": "npm test",
"release:patch": "npm version --no-workspaces patch --message 'v%s' && npm publish && git push --follow-tags",
"release:minor": "npm version --no-workspaces minor --message 'v%s' && npm publish && git push --follow-tags",
"release:major": "npm version --no-workspaces major --message 'v%s' && npm publish && git push --follow-tags"
},
"dependencies": {
"@babel/runtime": "^7.0.0",
"@codemirror/lang-html": "^6.0.0",
"@codemirror/lang-javascript": "^6.0.0",
"@lume/element": "^0.13.0",
"@uiw/codemirror-theme-noctis-lilac": "^4.0.0",
"classy-solid": "^0.3.0",
"code-mirror-el": "^0.1.0",
"codemirror": "^6.0.0",
"solid-js": "^1.0.0",
"thememirror": "^2.0.0"
},
"devDependencies": {
"@lume/cli": "^0.14.0",
"five-server": "^0.3.1",
"lowclass": "^8.0.0",
"prettier": "3.0.3",
"rimraf": "^5.0.1",
"typescript": "^5.0.0"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/lume/live-code.git"
},
"bugs": {
"url": "https://github.com/lume/live-code/issues"
},
"keywords": [
"custom-elements",
"web-components",
"html",
"ui",
"ui-components",
"code-editor",
"live-code",
"lume"
]
}