-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.94 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.94 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
{
"name": "@penguindevs/penguin-engine",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/penguindevs/PenguinEngine.git"
},
"devDependencies": {
"@auto-it/all-contributors": "^v11.0.4",
"@auto-it/conventional-commits": "^v11.0.4",
"@auto-it/first-time-contributor": "^v11.0.4",
"@auto-it/npm": "^v11.0.4",
"@auto-it/released": "^v11.0.4",
"auto": "^v11.0.4",
"lerna": "^7.1.4",
"moonwave": "^1.1.2"
},
"version": "1.0.0",
"description": "A collection of my packages compatible with the Nevermore Engine's packages.",
"license": "ISC",
"scripts": {
"build:sourcemap": "rojo sourcemap default.project.json --output sourcemap.json",
"build:link": "npx lerna exec --parallel -- npm install --no-package-lock --no-audit --no-fund",
"lint:luau": "luau-lsp analyze --sourcemap=sourcemap.json --base-luaurc=.luaurc --defs=globalTypes.d.lua --flag:LuauSolverV2=false --ignore='**/node_modules/**' --ignore='**/*.story.lua' --ignore='**/*.client.lua' --ignore='**/*.server.lua' src",
"lint:moonwave": "npx lerna exec --parallel -- moonwave-extractor extract src",
"lint:selene": "npx lerna exec -- selene --config=../../selene.toml src",
"lint:stylua": "stylua --config-path=stylua.toml --check src games tests plugins",
"format": "stylua --config-path=stylua.toml src games tests plugins",
"postinstall": "npm run build:link",
"prelint:luau": "npm run build:sourcemap && node tools/scripts/download-roblox-types.js",
"release": "auto shipit"
},
"author": "Jason Yi <[email protected]>",
"auto": {
"plugins": [
[
"npm",
{
"forcePublish": false
}
],
[
"conventional-commits",
{
"defaultReleaseType": "patch"
}
],
"all-contributors",
"first-time-contributor",
"released"
]
},
"dependencies": {
"@quenty/servicebag": "^11.13.0"
}
}