-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.29 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
{
"name": "@joakimstai/q",
"version": "0.1.2",
"description": "A tiny, simple and fast FIFO queue.",
"license": "Unlicense",
"keywords": [
"queue",
"fifo"
],
"homepage": "https://github.com/joakim/q#readme",
"bugs": "https://github.com/joakim/q/issues",
"repository": {
"type": "git",
"url": "https://github.com/joakim/q.git"
},
"contributors": [
"Joakim Stai"
],
"type": "module",
"main": "dist/q.js",
"types": "dist/q.d.ts",
"exports": "./dist/q.js",
"sideEffects": false,
"files": [
"/dist"
],
"scripts": {
"build-types": "tsc",
"build-full": "esbuild ./src/q.ts --outfile=./dist/q.js --sourcemap=external",
"build-minify": "esbuild ./src/q.ts --outfile=./dist/q-min.js --minify --sourcemap=external --target=es2020",
"build": "rm -rf ./dist && pnpm run build-types && pnpm run build-full && pnpm run build-minify",
"test": "vitest"
},
"devDependencies": {
"@types/node": "^22.8.1",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"denque": "^2.1.0",
"esbuild": "^0.19.12",
"eslint": "^8.57.1",
"eslint-plugin-tsdoc": "^0.2.17",
"fast-fifo": "^1.3.2",
"tinybench": "2.6.0",
"tsx": "^4.19.1",
"typescript": "^5.6.3",
"vitest": "^1.6.0"
}
}