generated from jacklehamster/bun-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
71 lines (71 loc) · 1.89 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
71
{
"name": "dok-matrix",
"module": "src/index.ts",
"description": "Matrix utilities used for Dok game engine",
"version": "1.0.26",
"keywords": [
"bun",
"bunjs",
"typescript",
"template",
"npm",
"np",
"publish",
"git"
],
"repository": {
"type": "git",
"url": "git@github.com:jacklehamster/dok-matrix.git"
},
"homepage": "https://jacklehamster.github.io/dok-matrix/",
"author": {
"name": "Jack Le Hamster",
"email": "jacklehamster@gmail.com"
},
"license": "MIT",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"engines": {
"node": ">=14.0.0"
},
"scripts": {
"start": "bun run index.ts",
"test": "bun test",
"build": "bun i && bun run fix-package-name && rm -rf *.tsbuildinfo && rm -rf dist/*.* && bun run bundler/bundler.ts && bun run test && bun run build:declaration",
"build:declaration": "tsc --emitDeclarationOnly --project tsconfig.types.json",
"build:example": "cd example && bun i && bun run build && cd ..",
"example": "cd example && bun start && cd ..",
"fix-package-name": "npm explore package-name-fixer -- bun start \"$(pwd)\"",
"auto-publish": "npm explore @dobuki/auto-publish -- bun run auto-publish \"$(pwd)\""
},
"publishConfig": {
"access": "public"
},
"files": [
"dist"
],
"devDependencies": {
"@dobuki/auto-publish": "^1.0.7",
"@types/bun": "^1.0.8",
"@types/jest": "^29.5.6",
"@types/mocha": "^10.0.3",
"@types/react": "^18.2.62",
"bun": "^1.0.30",
"bun-types": "^1.0.30",
"jest": "^29.7.0",
"package-name-fixer": "^1.0.9",
"prettier": "^3.0.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"typescript": "^5.3.3"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"dependencies": {
"abstract-list": "^1.0.13",
"change-listener": "^1.0.2",
"progressive-value": "^1.0.10"
}
}