-
Notifications
You must be signed in to change notification settings - Fork 124
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.34 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.34 KB
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
{
"name": "codeflask",
"version": "1.4.1",
"description": "A micro code-editor for awesome web pages",
"main": "build/codeflask.min.js",
"module": "build/codeflask.module.js",
"types": "index.d.ts",
"files": [
"build/codeflask.min.js",
"build/codeflask.module.js",
"index.d.ts",
"README.md",
"LICENSE"
],
"was_scripts": {
"build": "rollup -c",
"dev": "serve build & rollup -c -w",
"start": "serve public",
"pretest": "npm run build",
"test": "wdio test/wdio.conf.js",
"prepublishOnly": "npm install && npm run build"
},
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"test": "playwright test"
},
"devDependencies": {
"@esm-bundle/chai": "^4.3.4-fix.0",
"@playwright/test": "^1.23.4",
"@web/test-runner": "^0.13.31",
"@web/test-runner-playwright": "^0.8.9",
"vite": "^3.0.0"
},
"dependencies": {
"@types/prismjs": "^1.26.0",
"prismjs": "^1.28.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kazzkiq/CodeFlask.git"
},
"keywords": [
"code-editor",
"code",
"syntax-highlight",
"highlight"
],
"author": "Claudio Holanda",
"license": "MIT",
"bugs": {
"url": "https://github.com/kazzkiq/CodeFlask/issues"
},
"homepage": "https://kazzkiq.github.io/CodeFlask/"
}