-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
42 lines (42 loc) · 959 Bytes
/
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
{
"name": "cpuschedulerts",
"version": "1.0.19",
"description": "this is package for cpu scheduling",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist/**/*.ts",
"dist/**/*.js",
"dist/**/*.d.ts"
],
"scripts": {
"ts": "node start.js",
"build": "tsc && tsc-alias"
},
"author": "dennis ko",
"license": "MIT",
"dependencies": {
"@datastructures-js/priority-queue": "^6.2.0",
"typescript": "^5.0.4"
},
"devDependencies": {
"ts-node": "^10.9.1",
"tsc-alias": "^1.8.6",
"tsconfig-paths": "^4.2.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dennis0324/cpu-Scheduler-Simulator.git"
},
"keywords": [
"cpu",
"scheduler",
"simulator",
"js",
"ts"
],
"bugs": {
"url": "https://github.com/dennis0324/cpu-Scheduler-Simulator/issues"
},
"homepage": "https://github.com/dennis0324/cpu-Scheduler-Simulator#readme"
}