-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.05 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
{
"name": "@galadrim/galacrypt",
"version": "2.0.0",
"private": false,
"type": "module",
"main": "./bin/index.js",
"module": "./src/index.ts",
"types": "./src/index.ts",
"license": "MIT",
"scripts": {
"build": "rm -rf bin && tsc && chmod +x ./bin/index.js",
"lint": "eslint . --ext=.ts",
"format": "prettier --write .",
"start": "yarn build && ./bin/index.js"
},
"devDependencies": {
"@types/node": "^20.11.25",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"eslint": "^8.45.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"prettier": "^3.2.5",
"typescript": "~5.3.3"
},
"bugs": {
"url": "https://github.com/galadrimteam/galacrypt/issues"
},
"homepage": "https://github.com/galadrimteam/galacrypt#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/galadrimteam/galacrypt.git"
},
"files": [
"bin",
"README.md",
"package.json"
],
"bin": {
"galacrypt": "./bin/index.js"
}
}