forked from gvergnaud/hotscript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.05 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
{
"name": "hotscript",
"version": "1.0.3",
"description": "Type-level madness",
"type": "module",
"source": "src/index.ts",
"main": "./dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc src/index.ts -d --emitDeclarationOnly --outDir dist",
"prepublishOnly": "npm run test && npm run build",
"test": "jest",
"clear-test": "jest --clearCache",
"perf": "tsc --project test/tsconfig.json --noEmit --extendedDiagnostics",
"fmt": "prettier ./src/** ./tests/** -w",
"check": "tsc --strict --noEmit --extendedDiagnostics"
},
"files": [
"dist/**/*"
],
"repository": {
"type": "git",
"url": "git+https://github.com/gvergnaud/HOTScript.git"
},
"license": "ISC",
"bugs": {
"url": "https://github.com/gvergnaud/HOTScript/issues"
},
"homepage": "https://github.com/gvergnaud/HOTScript#readme",
"author": "Gabriel Vergnaud",
"devDependencies": {
"@types/jest": "^29.4.0",
"jest": "^29.4.2",
"prettier": "^2.8.4",
"ts-jest": "^29.0.5",
"typescript": "^4.9.5"
}
}