-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) 路 1.13 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) 路 1.13 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
52
53
54
55
56
{
"name": "fastrjs",
"version": "0.1.0",
"keywords": [
"requirejs",
"rjs"
],
"repository": {
"type": "git",
"url": "https://github.com/tscpp/fastrjs.git"
},
"license": "MIT",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./cli": {
"types": "./dist/cli.d.ts",
"default": "./dist/cli.js"
}
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": "./dist/bin.js",
"files": [
"dist"
],
"scripts": {
"build": "node scripts/build.js",
"postinstall": "patch-package"
},
"dependencies": {
"@eliassko/logger": "^1.1.0",
"@swc/core": "^1.6.13",
"esbuild": "^0.23.0",
"globby": "^14.0.2",
"resolve": "^1.22.8",
"yargs": "^17.7.2"
},
"devDependencies": {
"@tsconfig/node18": "^18.2.4",
"@tsconfig/strictest": "^2.0.5",
"@types/node": "^20.14.10",
"@types/resolve": "^1.20.6",
"@types/yargs": "^17.0.32",
"patch-package": "^8.0.0",
"requirejs": "2.3.7",
"tsup": "^8.1.0",
"typescript": "^5.5.3"
},
"engines": {
"node": ">=18"
}
}