This repository has been archived by the owner on Jan 5, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
81 lines (81 loc) · 2.2 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "framer-modules",
"productName": "Framer Modules",
"version": "1.0.0",
"description": "Community-driven modules registry and manager for Framer",
"main": "app/core/app.js",
"scripts": {
"eslint": "eslint src/",
"buildcore": "babel src/core/ --out-dir app/core/ && babel src/interface/Action.js --out-file app/interface/Action.js",
"buildinterface": "webpack && cp src/interface/index.html app/interface/index.html",
"build": "npm run buildinterface && npm run buildcore",
"devserver": "webpack-dev-server --progress --inline --hot",
"start": "npm run buildcore && electron .",
"release": "npm run build && build --mac -p always && rm -rf dist",
"dist": "npm run build && electron-builder"
},
"keywords": [
"framer",
"modules",
"module",
"manager",
"registry"
],
"author": "Radek Kysely",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.25.0",
"babel-loader": "^7.0.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"css-loader": "^0.28.4",
"electron": "^1.6.6",
"electron-builder": "^19.19.1",
"electron-react-devtools": "^0.4.0",
"eslint": "3.x",
"node-sass": "^4.5.3",
"react-hot-loader": "^1.3.1",
"sass-loader": "^6.0.6",
"style-loader": "^0.18.2",
"webpack": "^2.6.1",
"webpack-dev-server": ">=3.1.11"
},
"dependencies": {
"electron-store": "^1.1.0",
"electron-updater": "^2.8.2",
"lodash.debounce": "^4.0.8",
"mkdirp": "^0.5.1",
"prop-types": "^15.5.10",
"react": "^15.6.0",
"react-dom": "^15.6.0",
"react-router-dom": "^4.1.1",
"request": "^2.81.0",
"rimraf": "^2.6.1"
},
"build": {
"appId": "digital.kysely.framermodules",
"productName": "Framer Modules",
"files": [
"!src${/*}",
"!resources${/*}"
],
"mac": {
"category": "public.app-category.productivity"
},
"protocols": {
"name": "framermodules",
"schemes": [
"framermodules"
]
}
},
"publish": [
{
"provider": "github",
"owner": "kysely",
"repo": "framer-modules"
}
]
}