-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
62 lines (62 loc) · 1.59 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
{
"name": "sb-edit",
"version": "0.15.0",
"description": "Import, edit, and export Scratch project files",
"keywords": [
"Scratch",
"mit-scratch",
"sb2",
"sb3",
"leopard"
],
"bugs": {
"url": "https://github.com/leopard-js/sb-edit/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/leopard-js/sb-edit.git"
},
"license": "MIT",
"author": "Josh Pullen <hello@joshuapullen.com> (https://joshuapullen.com/)",
"contributors": [
"Quasar Nebula <qznebula@protonmail.com> (https://github.com/towerofnix)",
"adroitwhiz <adroitwhiz@protonmail.com> (https://github.com/adroitwhiz)"
],
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib/**/*"
],
"bin": {
"sb-edit": "lib/cli/index.js"
},
"scripts": {
"build": "tsc",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "eslint \"src/**/*.ts\"",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint",
"test": "jest --config jestconfig.json",
"watch": "tsc -w"
},
"dependencies": {
"chalk": "^4.1.2",
"commander": "^12.0.0",
"jszip": "^3.10.1",
"prettier": "^2.8.8"
},
"devDependencies": {
"@types/jest": "^29.5.11",
"@types/jszip": "^3.1.6",
"@types/node": "^20.12.7",
"@types/prettier": "^2.7.3",
"@typescript-eslint/eslint-plugin": "^6.14.0",
"@typescript-eslint/parser": "^6.14.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.7.0",
"ts-jest": "^29.1.1",
"typescript": "^4.9.5"
}
}