-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
46 lines (46 loc) · 1.31 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
{
"name": "leopard",
"version": "1.6.1",
"private": false,
"description": "Make Scratch-like projects with JavaScript.",
"homepage": "https://leopardjs.com/",
"bugs": {
"url": "https://github.com/leopard-js/leopard/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/leopard-js/leopard.git"
},
"license": "MIT",
"author": "Josh Pullen <[email protected]> (https://joshuapullen.com/)",
"contributors": [
"adroitwhiz <[email protected]> (https://github.com/adroitwhiz)",
"Quasar Nebula <[email protected]> (https://github.com/towerofnix)"
],
"main": "dist/index.umd.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"browser": true,
"files": [
"dist/"
],
"scripts": {
"build": "rollup -c",
"dev": "rollup -c --watch",
"lint": "eslint \"./src/**.ts\"",
"prepare": "npm run build"
},
"devDependencies": {
"@rollup/plugin-typescript": "^11.1.5",
"@typescript-eslint/eslint-plugin": "^6.15.0",
"@typescript-eslint/parser": "^6.15.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.7.1",
"rollup": "^2.77.0",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-terser": "^7.0.2",
"typescript": "^4.9.5"
}
}