package and package lock files

This commit is contained in:
EncodedVenom 2024-07-13 18:21:44 -04:00
parent 04fefa7988
commit b616dffcc0
No known key found for this signature in database
GPG key ID: 55A4643DA68078EF
2 changed files with 1859 additions and 41 deletions

1818
package-lock.json generated

File diff suppressed because it is too large Load diff

View file

@ -1,38 +1,44 @@
{ {
"name": "@rbxts/jecs", "name": "@rbxts/jecs",
"version": "0.2.3", "version": "0.2.3",
"description": "Stupidly fast Entity Component System", "description": "Stupidly fast Entity Component System",
"main": "src", "main": "src",
"repository": { "repository": {
"type": "git", "type": "git",
"url": "https://github.com/ukendio/jecs.git" "url": "https://github.com/ukendio/jecs.git"
}, },
"keywords": [], "keywords": [],
"author": "Ukendio", "author": "Ukendio",
"contributors": [ "contributors": [
"Ukendio", "Ukendio",
"EncodedVenom" "EncodedVenom"
], ],
"homepage": "https://github.com/ukendio/jecs", "homepage": "https://github.com/ukendio/jecs",
"license": "MIT", "license": "MIT",
"types": "src/index.d.ts", "types": "src/index.d.ts",
"files": [ "files": [
"src/" "src/"
], ],
"publishConfig": { "publishConfig": {
"access": "public" "access": "public"
}, },
"devDependencies": { "devDependencies": {
"@rbxts/compiler-types": "^2.3.0-types.1", "@rbxts/compiler-types": "^2.3.0-types.1",
"@rbxts/types": "^1.0.781", "@rbxts/types": "^1.0.781",
"@typescript-eslint/eslint-plugin": "^5.8.0", "@typescript-eslint/eslint-plugin": "^5.8.0",
"@typescript-eslint/parser": "^5.8.0", "@typescript-eslint/parser": "^5.8.0",
"eslint": "^8.5.0", "eslint": "^8.5.0",
"eslint-config-prettier": "^8.3.0", "eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0", "eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-roblox-ts": "^0.0.32", "eslint-plugin-roblox-ts": "^0.0.32",
"prettier": "^2.5.1", "prettier": "^2.5.1",
"roblox-ts": "^2.3.0", "roblox-ts": "^2.3.0",
"typescript": "^5.4.2" "typescript": "^5.4.2",
} "vitepress": "^1.3.0"
} },
"scripts": {
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs"
}
}