-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
40 lines (40 loc) · 1.51 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
{
"name": "@framp/frappe",
"description": "A library for defining UI components based on time and events",
"author": "Federico Rampazzo <[email protected]> (https://framp.me/)",
"version": "0.3.0",
"main": "build/frappe.js",
"unpkg": "build/umd/frappe.js",
"module": "build/es/frappe.js",
"typings": "build/src/index.d.ts",
"types": "build/src/index.d.ts",
"scripts": {
"pretty": "prettier --no-semi --single-quote --write src/*.ts examples/*.tsx && tslint src/*.ts examples/*.tsx --fix",
"test": "ts-node src",
"start": "parcel ./examples/index.html --open",
"docs": "typedoc src && parcel build --public-url /frappe/examples/ --out-dir examples-build ./examples/index.html",
"build": "rollup -c",
"prepare-pr": "npm run pretty && npm test && npm run docs && npm run build",
"publish-docs": "cd ../frappe-site && rm -rf docs examples && mv ../frappe/docs . && mv ../frappe/examples-build examples && git add -A . && git commit -m \"Update docs and examples\" && git push"
},
"peerDependencies": {
"react": "*"
},
"devDependencies": {
"@types/react": "^16.7.18",
"parcel-bundler": "^1.11.0",
"prettier": "^1.15.3",
"react": "^16.7.0",
"react-dom": "^16.7.0",
"rollup": "^1.0.0",
"rollup-plugin-re": "^1.0.7",
"rollup-plugin-terser": "^3.0.0",
"rollup-plugin-typescript2": "^0.18.1",
"ts-node": "^7.0.1",
"tslint": "^5.12.0",
"tslint-config-standard": "^8.0.1",
"typedoc": "^0.13.0",
"typescript": "^3.2.2"
},
"license": "MIT"
}