-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
70 lines (70 loc) · 2.02 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
63
64
65
66
67
68
69
70
{
"name": "@0b5vr/experimental",
"description": "Experimental edition of 0b5vr",
"author": "0b5vr",
"version": "0.9.6",
"repository": {
"type": "git",
"url": "https://github.com/0b5vr/experimental-npm.git"
},
"main": "dist/0b5vr-experimental.cjs.js",
"module": "dist/0b5vr-experimental.esm.js",
"types": "types/index.d.ts",
"typesVersions": {
"<3.8": {
"*": [
"ts3.4/*"
]
}
},
"license": "MIT",
"files": [
"/dist/",
"/ts*/",
"/types/",
"/LICENSE"
],
"sideEffects": false,
"scripts": {
"version": "yarn all",
"dev": "cross-env SERVE=1 node bin/build.js",
"all": "yarn lint && yarn test && yarn clean && yarn build && yarn docs",
"clean": "rimraf dist/ docs/ ts*/ types/",
"test": "jest",
"lint": "eslint \"src/**/*.{ts,tsx}\"",
"lint-fix": "eslint \"src/**/*.{ts,tsx}\" --fix",
"build": "yarn build-js && yarn build-types",
"build-js": "node bin/build.js",
"build-types": "yarn build-types-tsc && yarn build-types-downlevel && yarn build-types-bundle",
"build-types-tsc": "tsc --declaration --declarationDir ./types --emitDeclarationOnly",
"build-types-downlevel": "downlevel-dts types ts3.4/types",
"build-types-bundle": "node bin/dts-bundle.js",
"docs": "typedoc --entryPoints ./src/index.ts --out docs",
"gh-pages": "node ./utils/gh-pages.js"
},
"devDependencies": {
"@types/jest": "^25.1.2",
"@types/node": "^13.1.0",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"cross-env": "^7.0.2",
"downlevel-dts": "^0.5.0",
"dts-bundle": "^0.7.3",
"esbuild": "^0.14.21",
"eslint": "^8.0.1",
"eslint-plugin-jest": "^25.0.6",
"eslint-plugin-sort-imports-es6-autofix": "^0.6.0",
"gh-pages": "^2.1.1",
"jest": "^25.1.0",
"rimraf": "^3.0.0",
"ts-jest": "^25.2.0",
"ts-node": "^8.6.2",
"tslib": "^2.2.0",
"typedoc": "^0.22.15",
"typescript": "^4.6.3"
},
"volta": {
"node": "16.11.1",
"yarn": "1.22.15"
}
}