-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 1.07 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
{
"name": "stormworks-screen-api",
"version": "0.1.4",
"description": "JS implementation of the Stormworks screen API",
"keywords": ["stormworks", "screen", "typescript", "lua", "api"],
"main": "build/src/index.js",
"repository": "git@github.com:filp/ts-package-boilerplate",
"author": "Filipe Dobreira",
"license": "MIT",
"types": "build/src/index.d.ts",
"private": false,
"scripts": {
"lint": "eslint .",
"test": "jest .",
"build": "tsc -b .",
"dev": "parcel --open --dist-dir kitchen-sink/dist kitchen-sink/index.html",
"prepack": "yarn lint && yarn build"
},
"devDependencies": {
"@types/jest": "^28.1.6",
"@typescript-eslint/eslint-plugin": "^5.30.7",
"@typescript-eslint/parser": "^5.30.7",
"eslint": "^8.20.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^3.3.0",
"eslint-plugin-import": "^2.26.0",
"jest": "^28.1.3",
"parcel": "^2.6.2",
"prettier": "^2.7.1",
"ts-jest": "^28.0.7",
"typescript": "^4.7.4"
},
"browserslist": "> 0.5%, last 2 versions, not dead"
}