-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
88 lines (88 loc) · 2.8 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "jsonik",
"version": "0.1.0",
"private": true,
"type": "module",
"engines": {
"node": ">=16"
},
"scripts": {
"dev": "node esbuild --dev",
"check": "svelte-check --tsconfig ./tsconfig.json",
"lint": "eslint 'src/**/*.{js,ts,svelte}'",
"build": "node esbuild",
"start": "cd app && node app.cjs",
"build:bin": "cd app && npm run build && echo '{ \"main\": \"app.cjs\", \"output\": \"app.blob\" }' > config.json && node --experimental-sea-config config.json && cp $(command -v node) app && codesign --remove-signature app && chmod u+rw app && npx postject app NODE_SEA_BLOB app.blob --sentinel-fuse NODE_SEA_FUSE_fce680ab2cc467b6e072b8b5df1996b2 --macho-segment-name NODE_SEA && codesign --sign - app",
"start:bin": "cd app && ./app --trace-warnings"
},
"eslintConfig": {
"extends": [
"plugin:@typescript-eslint/recommended",
"plugin:svelte/recommended"
],
"plugins": [
"@typescript-eslint"
],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"project": "tsconfig.json",
"extraFileExtensions": [
".svelte"
]
},
"overrides": [
{
"files": [
"*.svelte"
],
"parser": "svelte-eslint-parser",
"parserOptions": {
"parser": "@typescript-eslint/parser"
}
}
],
"root": true,
"env": {
"node": true
},
"rules": {
"semi": 0,
"no-underscore-dangle": 0,
"import/prefer-default-export": 0,
"@typescript-eslint/no-explicit-any": "off",
"prefer-rest-params": "off"
},
"ignorePatterns": [
"**/node_modules/**"
]
},
"author": {
"name": "Valexr",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/Valexr/jsonik.git"
},
"devDependencies": {
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.15.0",
"@sveltejs/eslint-config": "^8.1.0",
"@types/eslint": "^9.6.1",
"@types/node": "^22.10.0",
"@typescript-eslint/eslint-plugin": "^8.16.0",
"@typescript-eslint/parser": "^8.16.0",
"codejar": "^4.2.0",
"esbuild": "^0.23.1",
"esbuild-svelte": "^0.8.2",
"eslint": "^9.15.0",
"eslint-plugin-svelte": "^2.46.0",
"globals": "^15.12.0",
"marked": "^15.0.2",
"svelte": "^4.2.19",
"svelte-check": "^4.1.0",
"svelte-pathfinder": "^4.8.1",
"svelte-preprocess": "^6.0.3",
"typescript": "^5.7.2"
}
}