-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.69 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.69 KB
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
74
75
76
77
78
79
80
81
82
83
{
"name": "@brochington/ecstatic",
"version": "0.5.1",
"description": "a damn fine ECS library",
"main": "dist/ecstatic.cjs.js",
"module": "dist/ecstatic.esm.js",
"exports": {
".": {
"types": "./ecstatic.d.ts",
"browser": "./dist/ecstatic.umd.js",
"import": "./dist/ecstatic.esm.js",
"require": "./dist/ecstatic.cjs.js"
}
},
"scripts": {
"clean": "rimraf dist",
"build": "npm run clean && npm run build:esm && npm run build:cjs-umd",
"build:esm": "esbuild src/index.ts --bundle --format=esm --outfile=dist/ecstatic.esm.js --minify --sourcemap",
"build:cjs-umd": "NODE_ENV=production rspack --config rspack.config.mjs",
"build:dev": "npm run clean && rspack --config rspack.config.mjs",
"dev": "npm run clean && rspack --config rspack.config.mjs --watch",
"test": "npm run build && vitest",
"test:ui": "vitest --ui",
"bench": "vitest bench",
"bench:ui": "vitest bench --ui",
"bench:json": "vitest bench --outputJson benchmark-results.json",
"bench:compare": "vitest bench --compare benchmark-results.json",
"type-check": "tsc --noEmit --project tsconfig.typecheck.json",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"quality": "npm run format:check && npm run lint",
"docs": "typedoc --out docs src && touch ./docs/.nojekyll",
"serve": "rspack serve"
},
"repository": {
"type": "git",
"url": "git+https://github.com/brochington/ecstatic.git"
},
"author": "Broch Stilley <brochington@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/brochington/ecstatic/issues"
},
"files": [
"dist/",
"ecstatic.d.ts"
],
"homepage": "https://brochington.github.io/ecstatic/",
"types": "ecstatic.d.ts",
"dependencies": {},
"peerDependencies": {},
"devDependencies": {
"@rspack/cli": "^1.5.7",
"@rspack/core": "^1.5.7",
"@types/lodash": "^4.14.168",
"@types/node": "^24.5.2",
"@types/sinon": "^17.0.4",
"@types/uuid": "^10.0.0",
"@types/validator": "^13.15.3",
"@typescript-eslint/eslint-plugin": "^8.44.1",
"@typescript-eslint/parser": "^8.44.1",
"@vitest/ui": "^3.2.4",
"esbuild": "^0.27.0",
"eslint": "^9.36.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.5.4",
"jsdom": "^27.0.0",
"lodash": "^4.17.21",
"prettier": "3.6.2",
"rimraf": "6.0.1",
"serve": "14.2.5",
"sinon": "^21.0.0",
"sinon-chai": "^4.0.1",
"typedoc": "0.28.13",
"typescript": "5.9.2",
"validator": "^13.5.2",
"vitest": "^3.2.4"
}
}