forked from unjs/std-env
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 935 Bytes
/
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
{
"name": "std-env",
"version": "3.2.1",
"description": "Detect current Javascript environment",
"repository": "unjs/std-env",
"license": "MIT",
"sideEffects": false,
"exports": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
},
"main": "./dist/index.cjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "unbuild",
"dev": "vitest",
"lint": "eslint --ext .ts .",
"prepack": "unbuild",
"release": "pnpm test && standard-version && git push --follow-tags && pnpm publish",
"test": "pnpm lint && vitest run"
},
"devDependencies": {
"@nuxtjs/eslint-config-typescript": "^10.0.0",
"@types/node": "^18.7.2",
"c8": "^7.12.0",
"eslint": "^8.21.0",
"jiti": "^1.14.0",
"standard-version": "^9.5.0",
"typescript": "^4.7.4",
"unbuild": "^0.8.8",
"vitest": "^0.21.1"
},
"packageManager": "pnpm@7.9.0"
}