-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
other: Fixed outdated GitHub repo urls and refs
- Loading branch information
1 parent
df4b943
commit 04e7d79
Showing
27 changed files
with
244 additions
and
186 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
{ | ||
"name": "@kipper/config", | ||
"description": "The config file support package adding support for kip-config.json 🦊", | ||
"version": "0.11.0-alpha.0", | ||
"author": "Luna-Klatzer @Luna-Klatzer", | ||
"devDependencies": { | ||
"typescript": "5.1.3" | ||
}, | ||
"engines": { | ||
"node": ">=16.0.0", | ||
"pnpm": ">=8" | ||
}, | ||
"homepage": "https://kipper-lang.org", | ||
"bugs": "https://github.com/Kipper-Lang/Kipper/issues", | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/Kipper-Lang/Kipper" | ||
}, | ||
"keywords": [ | ||
"kipper", | ||
"language", | ||
"compiler" | ||
], | ||
"files": [ | ||
"lib", | ||
"src", | ||
"LICENSE", | ||
"KipperLexer.g4", | ||
"KipperParser.g4" | ||
], | ||
"size-limit": [ | ||
{ | ||
"path": "./kipper-standalone.min.js", | ||
"limit": "200 kB" | ||
}, | ||
{ | ||
"path": "./kipper-standalone.js", | ||
"limit": "400 kB" | ||
} | ||
], | ||
"license": "GPL-3.0-or-later", | ||
"main": "lib/index.js", | ||
"types": "lib/index.d.ts", | ||
"scripts": { | ||
"prepack": "pnpm run build", | ||
"build": "tsc", | ||
"version": "pnpm version", | ||
"antlr4ts": "antlr4ts -visitor -o ./src/compiler/parser/antlr ./KipperLexer.g4 ./KipperParser.g4", | ||
"postantlr4ts": "run-script-os", | ||
"postantlr4ts:linux:macos:default": "cp ./src/compiler/parser/antlr/*.interp ./lib/compiler/parser/antlr/ && cp ./src/compiler/parser/antlr/*.tokens ./lib/compiler/parser/antlr/ && cp ./src/compiler/parser/antlr/*.tokens ./", | ||
"postantlr4ts:windows": "copy .\\src\\compiler\\parser\\antlr\\*.interp .\\lib\\compiler\\parser\\antlr\\ /Y && copy .\\src\\compiler\\parser\\antlr\\*.tokens .\\lib\\compiler\\parser\\antlr\\ && copy .\\src\\compiler\\parser\\antlr\\*.tokens .\\", | ||
"lint": "pnpm run tslint", | ||
"lint:fix": "pnpm run tslint:fix", | ||
"tslint": "eslint ./src/ --ext .ts --config ./../../.eslintrc", | ||
"tslint:fix": "eslint ./src/ --ext .ts --config ./../../.eslintrc --fix", | ||
"size-limit": "size-limit" | ||
} | ||
} |
Oops, something went wrong.