|
1 | 1 | { |
2 | 2 | "name": "@aetherinox/noxenv", |
3 | | - "version": "1.0.0", |
| 3 | + "version": "1.1.0", |
4 | 4 | "description": "Set and use environment variables across different platforms.", |
5 | | - "homepage": "https://github.com/Aetherinox/noxenv", |
6 | | - "author": "Aetherinox <adminservx@proton.me>", |
| 5 | + "homepage": "https://github.com/Aetherinox/node-noxenv", |
| 6 | + "author": "Aetherinox <thebinaryninja@proton.me>", |
| 7 | + "main": "src/index.js", |
| 8 | + "bin": { |
| 9 | + "noxenv": "src/bin/noxenv.js", |
| 10 | + "noxenv-shell": "src/bin/noxenv-shell.js" |
| 11 | + }, |
| 12 | + "publishConfig": { |
| 13 | + "access": "public" |
| 14 | + }, |
7 | 15 | "contributors": [ |
8 | 16 | { |
9 | 17 | "name": "Aetherinox", |
10 | | - "email": "adminservx@proton.me", |
| 18 | + "email": "thebinaryninja@proton.me", |
11 | 19 | "url": "https://github.com/Aetherinox" |
12 | | - }, |
13 | | - { |
14 | | - "name": "AdminServ", |
15 | | - "email": "adminservx@proton.me", |
16 | | - "url": "https://github.com/AdminServ" |
17 | 20 | } |
18 | 21 | ], |
19 | | - "publishConfig": { |
20 | | - "access": "public" |
21 | | - }, |
22 | 22 | "repository": { |
23 | 23 | "type": "git", |
24 | | - "url": "git+https://github.com/Aetherinox/noxenv.git" |
| 24 | + "url": "git+https://github.com/Aetherinox/node-noxenv.git" |
25 | 25 | }, |
26 | 26 | "bugs": { |
27 | | - "url": "https://github.com/Aetherinox/noxenv/issues" |
| 27 | + "url": "https://github.com/Aetherinox/node-noxenv/issues" |
28 | 28 | }, |
29 | 29 | "license": "MIT", |
30 | 30 | "keywords": [ |
| 31 | + "aetherinox", |
31 | 32 | "environment", |
32 | 33 | "environment variables", |
33 | 34 | "env variable", |
| 35 | + "env", |
| 36 | + "env-var", |
34 | 37 | "windows" |
35 | 38 | ], |
36 | | - "main": "src/index.js", |
37 | | - "bin": { |
38 | | - "noxenv": "src/bin/noxenv.js", |
39 | | - "noxenv-shell": "src/bin/noxenv-shell.js" |
40 | | - }, |
41 | 39 | "engines": { |
42 | | - "node": ">=10.14", |
43 | | - "npm": ">=6", |
| 40 | + "node": ">=20.9.0", |
| 41 | + "npm": ">=10", |
44 | 42 | "yarn": ">=1" |
45 | 43 | }, |
46 | 44 | "scripts": { |
|
49 | 47 | "build": "kcd-scripts build", |
50 | 48 | "pretty": "kcd-scripts format", |
51 | 49 | "lint": "kcd-scripts lint", |
52 | | - "test": "kcd-scripts test .", |
| 50 | + "test": "kcd-scripts test", |
53 | 51 | "test:update": "npm test -- --updateSnapshot --coverage", |
54 | 52 | "contrib:add": "all-contributors add", |
55 | 53 | "contrib:generate": "all-contributors generate", |
56 | | - "noxenv": "node noxenv.js", |
57 | | - "env-generate": "node noxenv.js generate", |
58 | | - "env-noxenv": "npx --quiet env-cmd --no-override node noxenv.js", |
59 | | - "uuid": "npx --quiet env-cmd --no-override node noxenv.js uuid", |
60 | | - "guid": "npx --quiet env-cmd --no-override node noxenv.js guid", |
61 | | - "version": "node -p require('./package.json').version;" |
| 54 | + "root": "node root.js", |
| 55 | + "root:generate": "node root.js generate", |
| 56 | + "root:root": "npx --quiet env-cmd --no-override node root.js", |
| 57 | + "root:uuid": "npx --quiet env-cmd --no-override node root.js uuid", |
| 58 | + "root:guid": "npx --quiet env-cmd --no-override node root.js guid", |
| 59 | + "root:version": "node -p require('./package.json').version;" |
62 | 60 | }, |
63 | 61 | "files": [ |
64 | 62 | "src", |
65 | 63 | "!tests" |
66 | 64 | ], |
67 | 65 | "dependencies": { |
68 | | - "cross-spawn": "^7.0.3", |
69 | | - "uuid": "^9.0.1" |
| 66 | + "cross-spawn": "^7.0.6", |
| 67 | + "uuid": "^11.1.0" |
70 | 68 | }, |
71 | 69 | "devDependencies": { |
72 | | - "kcd-scripts": "^15.0.1", |
| 70 | + "kcd-scripts": "^16.0.0", |
73 | 71 | "all-contributors-cli": "^6.26.1", |
74 | | - "@types/uuid": "^9.0.8" |
| 72 | + "@types/uuid": "^10.0.0" |
| 73 | + }, |
| 74 | + "overrides": { |
| 75 | + "concurrently": { |
| 76 | + "spawn-command": "1.0.0" |
| 77 | + } |
| 78 | + }, |
| 79 | + "eslintConfig": { |
| 80 | + "extends": "./node_modules/kcd-scripts/eslint.js" |
75 | 81 | }, |
76 | 82 | "babel": {} |
77 | 83 | } |
0 commit comments