app-devtools 0.2.0 → 0.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +16 -17
package/package.json
CHANGED
|
@@ -1,25 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "app-devtools",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.3.0",
|
|
4
4
|
"description": "",
|
|
5
|
-
"scripts": {
|
|
6
|
-
"dev": "vite",
|
|
7
|
-
"test": "vitest --ui",
|
|
8
|
-
"test:run": "echo 'no tests'",
|
|
9
|
-
"preview": "vite preview",
|
|
10
|
-
"tsc": "tsc -p tsconfig.prod.json",
|
|
11
|
-
"eslint": "eslint --ext .js,.ts,.tsx,.jsx src",
|
|
12
|
-
"lint": "pnpm eslint && pnpm tsc",
|
|
13
|
-
"tsc:w": "tsc -w -p tsconfig.prod.json",
|
|
14
|
-
"convert-har": "tsm scripts/filterFetchRequests.ts",
|
|
15
|
-
"build": "pnpm test:run && pnpm lint && pnpm build:no-test",
|
|
16
|
-
"build:no-test": "vite build && tsup --dts-only",
|
|
17
|
-
"publish": "./scripts/check-if-is-sync.sh && pnpm run build && npm publish"
|
|
18
|
-
},
|
|
19
5
|
"packageManager": "pnpm@6.29.1",
|
|
20
6
|
"license": "MIT",
|
|
21
7
|
"author": "Lucas Santos",
|
|
22
|
-
"repository": "github:lucasols",
|
|
8
|
+
"repository": "github:lucasols/app-devtools",
|
|
23
9
|
"type": "module",
|
|
24
10
|
"main": "./dist/main.cjs",
|
|
25
11
|
"module": "./dist/main.js",
|
|
@@ -68,5 +54,18 @@
|
|
|
68
54
|
"tsm": "^2.3.0",
|
|
69
55
|
"tsup": "^6.6.3",
|
|
70
56
|
"happy-dom": "^8.7.1"
|
|
57
|
+
},
|
|
58
|
+
"scripts": {
|
|
59
|
+
"dev": "vite",
|
|
60
|
+
"test": "vitest --ui",
|
|
61
|
+
"test:run": "echo 'no tests'",
|
|
62
|
+
"preview": "vite preview",
|
|
63
|
+
"tsc": "tsc -p tsconfig.prod.json",
|
|
64
|
+
"eslint": "eslint --ext .js,.ts,.tsx,.jsx src",
|
|
65
|
+
"lint": "pnpm eslint && pnpm tsc",
|
|
66
|
+
"tsc:w": "tsc -w -p tsconfig.prod.json",
|
|
67
|
+
"convert-har": "tsm scripts/filterFetchRequests.ts",
|
|
68
|
+
"build": "pnpm test:run && pnpm lint && pnpm build:no-test",
|
|
69
|
+
"build:no-test": "vite build && tsup --dts-only"
|
|
71
70
|
}
|
|
72
|
-
}
|
|
71
|
+
}
|