-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.62 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
{
"name": "npm-typescript-publish",
"version": "0.1.3",
"description": "Spike to publish a typescript Node package to NPM",
"main": "dist/index.js",
"module": "dist/index.cjs",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsup src/index.ts --format cjs,esm --dts --sourcemap",
"start": "tsc src/index.ts && node dist/index.js",
"start:hot": "npx nodemon",
"start:swc": "swc src/index.ts -d dist && node dist/index.js",
"test": "jest",
"lint": "prettier --plugin-search-dir . --check . && eslint .",
"format": "prettier --plugin-search-dir . --write .",
"release": "changeset",
"publish": "npm run build && bash publish.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/freitas-labs/node-npm-typescript-publish.git"
},
"keywords": [
"typescript",
"prettier",
"eslint",
"jest",
"hot",
"reload",
"git",
"hooks",
"started"
],
"author": "freitas-labs",
"license": "MIT",
"bugs": {
"url": "https://github.com/freitas-labs/node-npm-typescript-publish/issues"
},
"homepage": "https://github.com/freitas-labs/node-npm-typescript-publish#readme",
"type": "module",
"devDependencies": {
"@changesets/cli": "^2.26.1",
"@jest/globals": "^29.5.0",
"@swc/cli": "^0.1.62",
"@swc/core": "^1.3.51",
"@types/node": "^18.15.11",
"@typescript-eslint/eslint-plugin": "^5.58.0",
"@typescript-eslint/parser": "^5.58.0",
"eslint": "^8.38.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.5.0",
"nodemon": "^2.0.22",
"prettier": "^2.8.7",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"tsup": "^6.7.0",
"typescript": "^5.0.4"
}
}