-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
executable file
·67 lines (67 loc) · 1.81 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
62
63
64
65
66
67
{
"name": "Code-Sketch",
"version": "0.0.7",
"description": "First place where the code was written...",
"main": "main.js",
"author": "keelii",
"scripts": {
"dev": "ELECTRON_START_URL=http://localhost:2044 yarn electron",
"start": "./node_modules/.bin/parcel index.html -p 2044",
"parcel": "./node_modules/.bin/parcel build --no-cache --no-content-hash --no-source-maps --public-url=. index.html",
"build": "rm -rf dist release .cache && yarn parcel",
"build:web": "rm -rf dist release .cache && yarn parcel -d ../web.code-sketch.com",
"dist": "electron-builder --mac",
"electron": "electron .",
"release": "yarn build && yarn dist"
},
"build": {
"productName": "Code Sketch",
"extends": null,
"directories": {
"output": "release"
},
"files": [
"icon.icns",
"main.js",
"src/*.js",
"donation.html",
"dist/**",
"lib/**",
"img/**",
"package.json",
"node_modules/@babel",
"node_modules/sass"
],
"mac": {
"icon": "icon.icns",
"category": "public.app-category.productivity",
"target": [
"dmg"
]
}
},
"keywords": [],
"babel": {
"plugins": [
"@babel/plugin-proposal-class-properties"
]
},
"devDependencies": {
"@code-sketch/sublime-command-palette": "^0.0.12",
"@emmetio/codemirror-plugin": "^0.5.4",
"codemirror": "^5.42.2",
"electron": "^6.0.0",
"electron-builder": "^21.2.0",
"parcel-bundler": "^1.11.0",
"react": "^16.7.0",
"react-dom": "^16.7.0",
"react-split": "^2.0.7"
},
"dependencies": {
"@babel/core": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.3.0",
"@babel/plugin-transform-arrow-functions": "^7.2.0",
"@babel/plugin-transform-classes": "^7.2.2",
"sass": "^1.15.2"
}
}