-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 1.86 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
72
73
{
"name": "@stormmuller/forge",
"version": "1.1.5",
"type": "module",
"main": "dist/index.js",
"module": "dist/index.js",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/index.cjs"
}
}
},
"types": "./dist/index.d.ts",
"files": [
"dist",
"README.md"
],
"repository": {
"type": "git",
"url": "git+https://github.com/stormmuller/Forge.git"
},
"scripts": {
"dev": "vite --config vite.demo.config.js",
"build": "vite build",
"test:ui": "vitest --reporter=html",
"test": "vitest",
"check-exports": "attw --pack . --ignore-rules=false-esm",
"check-types": "tsc --noEmit --project ci.tsconfig.json",
"cspell": "cspell \"**\"",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"prettier": "prettier . --check",
"prettier:write": "prettier . --write",
"prepare": "husky"
},
"author": "",
"license": "MIT",
"description": "",
"devDependencies": {
"@arethetypeswrong/cli": "^0.17.4",
"@commitlint/cli": "^19.8.0",
"@commitlint/config-conventional": "^19.7.1",
"@vitest/ui": "^3.0.8",
"cspell": "^8.17.5",
"eslint": "^9.21.0",
"eslint-config-prettier": "^10.0.2",
"eslint-plugin-prettier": "^5.2.3",
"eslint-plugin-sort-exports": "^0.9.1",
"husky": "^9.1.7",
"jsdom": "^26.0.0",
"prettier": "^3.5.3",
"semantic-release": "^24.2.3",
"ts-node": "^10.9.2",
"typescript": "^5.7.3",
"typescript-eslint": "^8.25.0",
"vite": "^6.2.1",
"vite-plugin-dts": "^4.5.3",
"vitest": "^3.0.5"
},
"dependencies": {
"@rive-app/canvas": "^2.26.4",
"@types/howler": "^2.2.12",
"@types/seedrandom": "^3.0.8",
"howler": "^2.2.4",
"seedrandom": "^3.0.5"
}
}