-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.03 KB
/
Copy pathpackage.json
File metadata and controls
88 lines (88 loc) · 2.03 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
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
{
"name": "tsnd",
"description": "runtime ts cjs & esm module",
"version": "1.1.0",
"packageManager": "pnpm@8.5.0",
"bin": {
"tscjs": "./dist/index.js",
"tsnd-cjs": "./dist/index.js",
"tsesm": "./dist/index.mjs",
"tsnd-esm": "./dist/index.mjs"
},
"main": "./dist/index.js",
"files": [
"dist",
"typings"
],
"scripts": {
"build": "rm-all dist && rollup -c rollup.config.ts --configPlugin @rollup/plugin-typescript",
"dev": "cross-env BUILD_ENV=DEV rollup -c rollup.config.ts --configPlugin @rollup/plugin-typescript -w",
"dist": "run-s eslint prettier build",
"eslint": "eslint --fix --ext .ts,.js",
"prettier": "prettier --write \"**/*.{js,ts,json,md}\""
},
"directories": {
"bin": "bin",
"dist": "dist",
"typings": "typings"
},
"dependencies": {
"cross-spawn": "^7.0.3",
"esbuild": "^0.17.19",
"esbuild-node-loader": "^0.8.0",
"esbuild-register": "^3.4.2",
"import-meta-resolve": "^3.0.0"
},
"devDependencies": {
"@eslint-sets/eslint-config-ts": "^5.3.0",
"@rollup/plugin-node-resolve": "^15.1.0",
"@rollup/plugin-typescript": "^11.1.1",
"@types/cross-spawn": "^6.0.2",
"@types/node": "^20.2.5",
"consola": "^3.1.0",
"cross-env": "^7.0.3",
"eslint": "^8.41.0",
"load-yml": "^1.3.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.8",
"prettier-config-common": "^1.4.0",
"reinstaller": "^3.0.0",
"rm-all": "^1.0.0",
"rollup": "^3.23.0",
"rollup-plugin-esbuild": "^5.0.0",
"rollup-plugin-replace-shebang": "^1.2.0",
"typescript": "^5.1.3"
},
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
"@babel/core",
"webpack"
],
"allowedVersions": {
"eslint": "^8.10.0"
}
}
},
"keywords": [
"tsnd",
"tsnd-cjs",
"tsnd-esm",
"tscjs",
"tsesm",
"ts-runtime",
"typescript-runtime",
"saqqdy",
"tool"
],
"license": "MIT",
"author": "saqqdy<www.saqqdy.com>",
"homepage": "https://www.saqqdy.com/tsnd",
"bugs": {
"url": "https://github.com/saqqdy/tsnd/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/saqqdy/tsnd.git"
}
}