-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
45 lines (45 loc) · 1.04 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
{
"name": "@calumk/codecup",
"version": "1.9.2",
"description": "A micro code-editor for awesome web pages",
"main": "dist/codecup.bundle.js",
"files": [
"dist/codecup.bundle.js",
"README.md",
"LICENSE"
],
"scripts": {
"build": "webpack --mode=production",
"build:watch": "webpack --watch",
"pretest": "npm run build",
"prepublishOnly": "npm install && npm run build"
},
"dependencies": {
"@types/prismjs": "^1.9.1",
"prismjs": "^1.29.0"
},
"devDependencies": {
"postcss": "^8.2.6",
"postcss-loader": "^4.2.0",
"postcss-nested": "^5.0.3",
"postcss-nested-ancestors": "^2.0.0",
"webpack": "^5.89.0",
"webpack-cli": "^4.10.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/calumk/codecup.git"
},
"keywords": [
"code-editor",
"code",
"syntax-highlight",
"highlight"
],
"author": "Calum Knot",
"license": "MIT",
"bugs": {
"url": "https://github.com/calumk/codecup/issues"
},
"homepage": "https://github.com/calumk/codecup"
}