-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.55 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
{
"name": "@aethergames/scribe",
"version": "0.6.0-staging",
"description": "Scribe, a scripting language used to describe Dialogues or Quests behavior.",
"main": "out/init.lua",
"scripts": {
"build": "rbxtsc --verbose",
"watch": "rbxtsc -w",
"test:build": "rbxtsc --verbose --type game --rojo test.project.json",
"test:watch": "rbxtsc -w --verbose --type game --rojo test.project.json",
"test:serve": "rojo serve ./test.project.json",
"test:rojo": "mkdir build & npm run test:build && rojo build -o ./build/test.rbxlx test.project.json",
"test:run": "npm-run-all -p test:watch test:serve",
"prepublish": "npm run build && mkdir build && npm pack --pack-destination=build",
"prepare": "husky install",
"test": "npm run test:run"
},
"keywords": [],
"author": "",
"license": "ISC",
"types": "out/index.d.ts",
"files": [
"out",
"!**/*.tsbuildinfo"
],
"repository": {
"type": "git",
"url": "https://github.com/AetherInteractiveLtd/scribe.git"
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@rbxts/compiler-types": "^2.0.4-types.1",
"@rbxts/types": "^1.0.661",
"@typescript-eslint/eslint-plugin": "^5.51.0",
"@typescript-eslint/parser": "^5.51.0",
"eslint": "^8.33.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-roblox-ts": "^0.0.35",
"husky": "^8.0.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.3",
"typescript": "^4.9.5"
},
"dependencies": {
"@aethergames/mkscribe": "^0.5.1-beta.1",
"@rbxts/services": "^1.5.1",
"@rbxts/testez": "^0.4.2-ts.0"
}
}