generated from leonardssh/ragemp-typescript
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
63 lines (63 loc) · 1.64 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
{
"name": "ragemp-typescript",
"version": "2.2.1",
"scripts": {
"format": "prettier --write {src,scripts}/**/*.ts",
"build:production": "rollup -c ./scripts/rollup.config.js --environment NODE_ENV:production",
"build": "rollup -c ./scripts/rollup.config.js",
"watch": "rollup -w -c ./scripts/rollup.config.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/LeonardSSH/ragemp-typescript.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/LeonardSSH/ragemp-typescript/issues"
},
"homepage": "https://github.com/LeonardSSH/ragemp-typescript#readme",
"devDependencies": {
"@ragempcommunity/types-client": "^2.0.2",
"@ragempcommunity/types-server": "^2.0.2",
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.0.6",
"@rollup/plugin-replace": "^4.0.0",
"@swc/core": "^1.2.118",
"@swc/helpers": "^0.3.2",
"@types/node": "^17.0.23",
"builtin-modules": "^3.2.0",
"fs-jetpack": "^4.2.0",
"prettier": "^2.5.0",
"rollup": "^2.60.1",
"rollup-plugin-swc3": "^0.1.4",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-tsconfig-paths": "^1.0.15",
"rollup-plugin-typescript2": "^0.31.1",
"typescript": "^4.5.2"
},
"dependencies": {
"colorette": "^2.0.16",
"dotenv": "^16.0.0"
},
"prettier": {
"$schema": "http://json.schemastore.org/prettierrc",
"endOfLine": "lf",
"printWidth": 150,
"quoteProps": "as-needed",
"semi": true,
"singleQuote": true,
"tabWidth": 4,
"trailingComma": "none",
"useTabs": true,
"overrides": [
{
"files": "*.yml",
"options": {
"tabWidth": 2,
"useTabs": false
}
}
]
}
}