-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
59 lines (59 loc) · 1.83 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
{
"name": "pd-usb",
"version": "2.0.1",
"description": "JavaScript library for interacting with a Playdate console over USB, wherever WebSerial is supported. Not officially supported by or affiliated with Panic.",
"module": "dist/pd-usb.es.js",
"main": "dist/pd-usb.js",
"types": "dist/index.d.ts",
"scripts": {
"prepublishOnly": "npm run build",
"postpublish": "./deploy.sh",
"start": "rollup -c --watch --environment DEV_SERVER,BUILD:development",
"dev": "rollup -c --environment BUILD:development",
"build": "npm run dev && npm run build:min && npm run build:es",
"build:min": "rollup -c --environment BUILD:production",
"build:es": "rollup -c --environment ES_MODULE,BUILD:production"
},
"devDependencies": {
"@babel/core": "^7.0.0-0",
"@babel/preset-env": "^7.15.0",
"@babel/preset-react": "^7.14.5",
"@rollup/plugin-alias": "^3.1.5",
"@rollup/plugin-commonjs": "^20.0.0",
"@rollup/plugin-node-resolve": "^13.0.4",
"@rollup/plugin-replace": "^3.0.0",
"@types/node": "^16.7.2",
"@types/w3c-web-usb": "^1.0.5",
"babel-plugin-transform-class-properties": "^6.24.1",
"rollup": "^2.56.3",
"rollup-plugin-bundle-size": "^1.0.3",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-livereload": "^2.0.5",
"rollup-plugin-serve": "^1.1.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.30.0",
"typescript": "^4.3.5"
},
"files": [
"dist/**/*"
],
"keywords": [
"playdate",
"usb",
"webusb",
"webserial",
"serial",
"handheld",
"device",
"reverse-engineering"
],
"repository": {
"type": "git",
"url": "git+https://github.com/cranksters/pd-usb.git"
},
"author": "James Daniel <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/cranksters/pd-usb/issues"
}
}