-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.74 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
{
"name": "room-finder",
"version": "0.4.3",
"repository": "github:WalnutProgramming/room-finder",
"homepage": "https://room-finder.walnut.direct/",
"license": "AGPL-3.0-only",
"main": "./dist/index.js",
"module": "./dist/module.js",
"types": "./dist/index.d.ts",
"files": [
"/dist",
"/external-types"
],
"devDependencies": {
"@babel/cli": "^7.7.7",
"@babel/core": "^7.8.6",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.14.2",
"@babel/preset-env": "^7.8.6",
"@babel/preset-typescript": "^7.7.7",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^19.0.0",
"@rollup/plugin-node-resolve": "^13.0.0",
"@types/jest": "^26.0.23",
"babel-jest": "^27.0.2",
"copyfiles": "^2.2.0",
"embedme": "^1.20.0",
"jest": "^27.0.4",
"prettier": "^1.19.1",
"rollup": "^2.50.6",
"rollup-plugin-terser": "^7.0.2",
"typedoc": "^0.17.4",
"typescript": "~4.2.3"
},
"dependencies": {
"core-js": "3",
"dijkstrajs": "^1.0.1"
},
"scripts": {
"type-check": "tsc --noEmit",
"type-check:watch": "yarn type-check -- --watch",
"build": "yarn build:types && yarn bundle",
"build-without-bundle": "yarn build:types && yarn build:js",
"build:types": "tsc --emitDeclarationOnly",
"babel-compile": "babel src --out-dir lib --extensions \".ts,.tsx\" --source-maps inline",
"bundle": "rollup -c",
"prep": "yarn build && yarn docs && yarn test",
"prepublishOnly": "yarn prep",
"readme": "yarn embedme README.md",
"docs": "yarn readme && yarn typedoc src && copyfiles -u 1 \"docs-copied-files/**/*\" docs",
"test": "jest"
},
"prettier": {
"trailingComma": "es5"
}
}