-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
41 lines (41 loc) · 1.1 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
{
"name": "@rbxts/spriteclip",
"version": "1.0.0",
"description": "A Roblox module for easy sprite animation. Originally by nooneisback — with type declarations for roblox-ts compatibility.",
"main": "out/init.lua",
"scripts": {
"build": "rbxtsc",
"watch": "rbxtsc -w",
"prepublishOnly": "npm run build"
},
"keywords": [],
"author": "Firere",
"homepage": "https://devforum.roblox.com/t/spriteclip-sprite-sheet-animation-module/294195",
"repository": {
"type": "github",
"url": "git+https://github.com/Firere/SpriteClip"
},
"license": "ISC",
"types": "out/index.d.ts",
"files": [
"out",
"!**/*.tsbuildinfo"
],
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@rbxts/compiler-types": "^2.3.0-types.2",
"@rbxts/services": "^1.5.4",
"@rbxts/types": "^1.0.801",
"@typescript-eslint/eslint-plugin": "^7.12.0",
"@typescript-eslint/parser": "^7.12.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-roblox-ts": "^0.0.36",
"prettier": "^3.3.1",
"roblox-ts": "^2.3.0",
"typescript": "^5.4.5"
}
}