-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.41 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.41 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
{
"name": "@algorithm.ts/queue",
"version": "4.0.5",
"description": "Typescript implementation of queues, such as priority queue and circular queue.",
"author": {
"name": "guanghechen",
"url": "https://github.com/guanghechen/"
},
"repository": {
"type": "git",
"url": "https://github.com/guanghechen/algorithm.ts/tree/@algorithm.ts/queue@4.0.4",
"directory": "packages/queue"
},
"homepage": "https://github.com/guanghechen/algorithm.ts/tree/@algorithm.ts/queue@4.0.4/packages/queue#readme",
"keywords": [
"algorithm",
"data structure",
"heap",
"priority queue",
"circular queue"
],
"type": "module",
"exports": {
"types": "./lib/types/index.d.ts",
"import": "./lib/esm/index.mjs",
"require": "./lib/cjs/index.cjs"
},
"source": "./src/index.ts",
"types": "./lib/types/index.d.ts",
"main": "./lib/cjs/index.cjs",
"module": "./lib/esm/index.mjs",
"license": "MIT",
"files": [
"lib/",
"!lib/**/*.map",
"package.json",
"CHANGELOG.md",
"LICENSE",
"README.md"
],
"devDependencies": {
"@algorithm.ts/internal": "workspace:^"
},
"scripts": {
"clean": "rimraf lib",
"build": "rollup -c ../../rollup.config.mjs",
"test": "vitest run --config ../../vitest.config.ts",
"test:coverage": "vitest run --config ../../vitest.config.ts --coverage",
"test:update": "vitest run --config ../../vitest.config.ts -u"
}
}