forked from segmentio/typewriter
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
97 lines (97 loc) · 2.92 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
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
89
90
91
92
93
94
95
96
97
{
"name": "rudder-typer",
"version": "1.3.0",
"description": "A compiler for generating strongly typed analytics clients via RudderStack",
"repository": {
"type": "git",
"url": "git+https://github.com/rudderlabs/rudder-typer.git"
},
"homepage": "https://github.com/rudderlabs/rudder-typer/tree/master#readme",
"bugs": {
"url": "https://github.com/rudderlabs/rudder-typer/issues"
},
"author": "RudderStack",
"license": "MIT",
"type": "module",
"main": "./src/cli/index.js",
"bin": {
"rudder-typer": "./src/cli/index.js"
},
"scripts": {
"setup": "npm ci",
"init": "npm run cli init",
"dev": "NODE_ENV=development npm run cli",
"prod": "NODE_ENV=production npm run cli prod",
"cli": "TS_NODE_FILES=true tsx ./src/cli/index.tsx",
"build": "rm -rf dist && tsc && copyfiles --up 1 \"src/**/*.hbs\" dist/src/ && copyfiles \"README.*\" dist/ && copyfiles \"CHANGELOG.*\" dist/",
"test": "jest -c jest.config.js",
"lint": "eslint './src/**/*.{ts,tsx}'",
"format": "prettier --write ./src/**/*.{ts,tsx}",
"format:check": "prettier --check ./src/**/*.{ts,tsx}",
"release:ci": "cd dist && npm publish --access public",
"pre-commit": "npm run build && lint-staged",
"prepare": "husky",
"release": "npx standard-version",
"release:github": "npx conventional-github-releaser -p angular"
},
"devDependencies": {
"@types/jest": "29.5.12",
"@types/js-yaml": "4.0.9",
"@types/json-schema": "7.0.15",
"@types/json-stable-stringify": "1.0.36",
"@types/lodash": "4.17.7",
"@types/node": "22.2.0",
"@types/react": "18.3.3",
"@types/yargs": "17.0.33",
"@typescript-eslint/eslint-plugin": "8.1.0",
"@typescript-eslint/parser": "8.1.0",
"conventional-changelog-cli": "^5.0.0",
"copyfiles": "2.4.1",
"eslint": "9.9.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-prettier": "5.2.1",
"eslint-plugin-react": "7.35.0",
"husky": "9.1.4",
"jest": "29.7.0",
"jest-expect-message": "1.1.3",
"lint-staged": "15.2.9",
"ts-jest": "29.2.4",
"ts-node": "10.9.2",
"tsconfig-paths": "4.2.0",
"tsx": "4.17.0"
},
"dependencies": {
"figures": "6.1.0",
"fuse.js": "7.0.0",
"got": "14.4.2",
"handlebars": "4.7.8",
"ink": "5.0.1",
"ink-link": "4.1.0",
"ink-select-input": "6.0.0",
"ink-spinner": "5.0.0",
"ink-text-input": "6.0.0",
"joi": "17.13.3",
"js-yaml": "4.1.0",
"json-schema": "0.4.0",
"json-stable-stringify": "1.1.1",
"latest-version": "9.0.0",
"lodash": "4.17.21",
"node-machine-id": "1.1.12",
"object-assign": "4.1.1",
"prettier": "3.3.3",
"react": "18.3.1",
"sort-keys": "5.0.0",
"typescript": "5.5.4",
"yargs": "17.7.2"
},
"files": [
"src",
"CHANGELOG.md",
"README.md",
"package.json"
],
"lint-staged": {
"*.{ts,tsx}": "eslint --fix",
"*.{json,js,md,ts,tsx}": "prettier --write"
}
}