-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
48 lines (48 loc) · 1.09 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
{
"name": "firstly-monorepo",
"version": "0.0.0",
"description": "An opinionated Remult setup !",
"keywords": [
"remult",
"svelte",
"sveltekit"
],
"license": "MIT",
"type": "module",
"bin": "./esm/bin/cmd.js",
"repository": {
"type": "git",
"url": "https://github.com/jycouet/firstly",
"homepage": "https://github.com/jycouet/firstly"
},
"scripts": {
"//// ---- PROD ---- ////": "",
"build": "pnpm -F firstly compile",
"release:version": "npm run changeset version",
"release": "npm run build && changeset publish",
"//// OTHERS ////": "",
"reset": "git clean -xdf",
"up-dep": "pnpm -r up --latest"
},
"devDependencies": {
"@changesets/changelog-github": "0.5.0",
"@changesets/cli": "2.27.1",
"@kitql/eslint-config": "0.4.0",
"@playwright/test": "1.48.1",
"prettier": "3.3.3"
},
"sideEffects": false,
"publishConfig": {
"directory": "dist",
"access": "public"
},
"files": [
"dist",
"!dist/**/*.test.*",
"!dist/**/*.spec.*"
],
"exports": {},
"engines": {
"node": ">=18"
}
}