thinkwell 0.4.0 → 0.4.1

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.
@@ -0,0 +1,100 @@
1
+ {
2
+ "name": "@yao-pkg/pkg",
3
+ "version": "6.12.0",
4
+ "description": "Package your Node.js project into an executable",
5
+ "main": "lib-es5/index.js",
6
+ "license": "MIT",
7
+ "repository": {
8
+ "type": "git",
9
+ "url": "git+https://github.com/yao-pkg/pkg.git"
10
+ },
11
+ "types": "lib-es5/index.d.ts",
12
+ "bin": {
13
+ "pkg": "lib-es5/bin.js"
14
+ },
15
+ "files": [
16
+ "lib-es5/*.js",
17
+ "lib-es5/index.d.ts",
18
+ "dictionary/*.js",
19
+ "prelude/*.js"
20
+ ],
21
+ "prettier": {
22
+ "singleQuote": true
23
+ },
24
+ "dependencies": {
25
+ "@babel/generator": "^7.23.0",
26
+ "@babel/parser": "^7.23.0",
27
+ "@babel/types": "^7.23.0",
28
+ "@yao-pkg/pkg-fetch": "3.5.32",
29
+ "into-stream": "^6.0.0",
30
+ "minimist": "^1.2.6",
31
+ "multistream": "^4.1.0",
32
+ "picocolors": "^1.1.0",
33
+ "picomatch": "^4.0.2",
34
+ "prebuild-install": "^7.1.1",
35
+ "resolve": "^1.22.10",
36
+ "stream-meter": "^1.0.4",
37
+ "tar": "^7.4.3",
38
+ "tinyglobby": "^0.2.11",
39
+ "unzipper": "^0.12.3"
40
+ },
41
+ "devDependencies": {
42
+ "@babel/core": "^7.23.0",
43
+ "@release-it/conventional-changelog": "^7.0.2",
44
+ "@types/babel__generator": "^7.6.5",
45
+ "@types/minimist": "^1.2.2",
46
+ "@types/multistream": "^4.1.0",
47
+ "@types/node": "^16.18.113",
48
+ "@types/picomatch": "^3.0.1",
49
+ "@types/resolve": "^1.20.2",
50
+ "@types/stream-meter": "^0.0.22",
51
+ "@types/tar": "^6.1.13",
52
+ "@types/unzipper": "^0.10.10",
53
+ "@typescript-eslint/eslint-plugin": "^6.7.4",
54
+ "@typescript-eslint/parser": "^6.7.4",
55
+ "esbuild": "^0.24.0",
56
+ "esbuild-register": "^3.6.0",
57
+ "eslint": "^8.50.0",
58
+ "eslint-config-airbnb-base": "^15.0.0",
59
+ "eslint-config-airbnb-typescript": "^17.1.0",
60
+ "eslint-config-prettier": "^9.0.0",
61
+ "eslint-plugin-import": "^2.28.1",
62
+ "json-stable-stringify": "^1.0.1",
63
+ "lint-staged": "^15.2.10",
64
+ "prettier": "^3.0.3",
65
+ "release-it": "^16.2.1",
66
+ "rimraf": "^3.0.2",
67
+ "simple-git-hooks": "^2.11.1",
68
+ "typescript": "^4.7.2"
69
+ },
70
+ "scripts": {
71
+ "clean": "rimraf lib-es5",
72
+ "build": "npm run clean && tsc",
73
+ "start": "tsc --watch",
74
+ "lint": "npm run lint:style && npm run lint:code",
75
+ "lint:style": "prettier -c \"{lib,prelude,test}/**/*.{ts,js}\"",
76
+ "lint:code": "eslint lib prelude test",
77
+ "fix": "npm run lint:style -- -w && npm run lint:code -- --fix",
78
+ "prepare": "npm run build",
79
+ "prepublishOnly": "npm run lint",
80
+ "test": "npm run build && npm run test:host && npm run test:18 && npm run test:20",
81
+ "test:20": "node test/test.js node20 no-npm",
82
+ "test:18": "node test/test.js node18 no-npm",
83
+ "test:host": "node test/test.js host only-npm",
84
+ "bump:fetch": "yarn add @yao-pkg/pkg-fetch --exact",
85
+ "release": "read -p 'GITHUB_TOKEN: ' GITHUB_TOKEN && export GITHUB_TOKEN=$GITHUB_TOKEN && release-it"
86
+ },
87
+ "simple-git-hooks": {
88
+ "pre-commit": "npx lint-staged"
89
+ },
90
+ "lint-staged": {
91
+ "*.{js,css,md,json}": "prettier --write"
92
+ },
93
+ "publishConfig": {
94
+ "access": "public"
95
+ },
96
+ "packageManager": "yarn@1.22.22",
97
+ "engines": {
98
+ "node": ">=18.0.0"
99
+ }
100
+ }