-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.69 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.69 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
{
"name": "my-awesome-typescript-project",
"version": "1.0.1",
"private": true,
"description": "Ready to use environment for running and building typescript code.",
"type": "module",
"scripts": {
"list": "npx tsc --project tsconfig.json --listFilesOnly | sort",
"typecheck": "npx tsc --noEmit --emitDeclarationOnly false && echo \"type checking was successful\"",
"lint": "npx eslint .",
"types:build": "npx tsc --noEmit false --emitDeclarationOnly true --noEmitOnError false",
"build": "npx babel src --extensions \".ts\" --out-dir \"dist\" --ignore \"src/compiler-checks.ts\",\"**/*.d.ts\" --verbose",
"docs:build": "npx typedoc"
},
"dependencies": {
"core-js": "^3.47.0"
},
"devDependencies": {
"@babel/cli": "^7.28.3",
"@babel/core": "^7.28.5",
"@babel/preset-env": "^7.28.5",
"@babel/preset-typescript": "^7.28.5",
"@mulekick/eslint-config-muleslint": "^2.3.2",
"@types/node": "^24.10.1",
"babel-plugin-transform-import-meta": "^2.3.3",
"eslint": "^9.39.1",
"globals": "^16.5.0",
"remark-insert-headings": "^0.0.0",
"remark-toc": "^9.0.0",
"tsx": "^4.20.6",
"typedoc": "^0.28.14",
"typedoc-plugin-markdown": "^4.9.0",
"typedoc-plugin-remark": "^2.0.1",
"typescript": "^5.9.3"
},
"engines": {
"node": ">=v22.15.0",
"npm": ">=11.3.0"
},
"os": [
"linux"
],
"author": "mulekick <moolekick@gmail.com> (https://github.com/mulekick)",
"license": "MIT",
"repository": {},
"bugs": {},
"homepage": "https://github.com/mulekick/typescript-launchpad"
}