-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
40 lines (40 loc) · 1.01 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
{
"name": "@algorithm.ts/stack",
"version": "1.0.2",
"description": "Typescript implementation of stacks. (circular stack and etc)",
"author": {
"name": "guanghechen",
"url": "https://github.com/guanghechen/"
},
"repository": {
"type": "git",
"url": "https://github.com/guanghechen/algorithm.ts/tree/@algorithm.ts/[email protected]",
"directory": "packages/stack"
},
"homepage": "https://github.com/guanghechen/algorithm.ts/tree/@algorithm.ts/[email protected]/packages/stack#readme",
"keywords": [
"algorithm",
"data structure",
"circular stack",
"stack"
],
"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"
]
}