-
-
Notifications
You must be signed in to change notification settings - Fork 49
/
package.json
114 lines (114 loc) · 2.51 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "tstl",
"description": "TypeScript-STL (Standard Template Library, migrated from C++)",
"author": {
"name": "Jeongho Nam",
"email": "[email protected]",
"url": "https://github.com/samchon"
},
"version": "3.0.0",
"main": "./lib/index.js",
"typings": "./lib/index.d.ts",
"exports": {
".": {
"types": "./lib/index.d.ts",
"require": "./lib/index.js",
"import": "./lib/index.mjs"
}
},
"scripts": {
"api": "typedoc src --exclude \"**/+(test|benchmark)/**\" --excludeNotDocumented --plugin typedoc-plugin-external-module-name --plugin typedoc-plugin-exclude-references --out ../tstl@gh-pages/api",
"benchmark": "node benchmark",
"build": "rimraf lib && tsc && rollup -c",
"dev": "rimraf lib && tsc --watch",
"prettier": "prettier --write ./src/**/*.ts",
"test": "node lib/test"
},
"devDependencies": {
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.6",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/cli": "^0.11.19",
"@types/node": "^14.6.3",
"cli": "^1.0.1",
"prettier": "^2.8.8",
"rimraf": "^3.0.2",
"rollup": "^4.13.1",
"source-map-support": "^0.5.21",
"ts-node": "^10.7.0",
"tslib": "^2.6.2",
"typedoc": "^0.25.12",
"typescript": "^5.4.3"
},
"homepage": "https://github.com/samchon/tstl",
"repository": {
"type": "git",
"url": "https://github.com/samchon/tstl"
},
"bugs": {
"url": "https://github.com/samchon/tstl/issues"
},
"license": "MIT",
"keywords": [
"tstl",
"typecript",
"c++",
"cpp",
"stl",
"standard template library",
"algorithm",
"container",
"exception",
"functional",
"iterator",
"numeric",
"ranges",
"thread",
"utility",
"base",
"experimental",
"internal",
"Vector",
"Deque",
"List",
"VectorBoolean",
"ForwardList",
"Stack",
"Queue",
"PriorityQueue",
"FlatMap",
"FlatMultiMap",
"FlatMultiSet",
"FlatSet",
"HashMap",
"HashMultiMap",
"HashMultiSet",
"HashSet",
"TreeMap",
"TreeMultiMap",
"TreeMultiSet",
"TreeSet",
"ConditionVariable",
"Semaphore",
"Latch",
"Barrier",
"FlexBarrier",
"Mutex",
"TimedMutex",
"SharedMutex",
"SharedTimedMutex",
"SharedLock",
"UniqueLock",
"Singleton"
],
"files": [
"LICENSE",
"README.md",
"lib/",
"src/",
"!lib/benchmark",
"!lib/test",
"!src/benchmark",
"!src/test"
]
}