forked from denoland/std
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 2.17 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "@gjsify/deno_std",
"version": "0.0.4",
"description": "Gjsify fork of Deno standard library to make use of the node compatibility layer",
"main": "lib/index.js",
"module": "lib/index.js",
"type": "module",
"exports": {
".": {
"import": {
"types": "./lib/index.d.ts",
"default": "./lib/index.js"
},
"require": {
"types": "./lib/index.d.ts",
"default": "./lib/index.js"
}
},
"./*": {
"import": {
"types": "./lib/*.d.ts",
"default": "./lib/*.js"
},
"require": {
"types": "./lib/*.d.ts",
"default": "./lib/*.js"
}
}
},
"scripts": {
"clear": "rm -rf lib tsconfig.types.tsbuildinfo test.gjs.mjs",
"print:name": "echo '@gjsify/deno_std'",
"rename:js": "node rename.mjs",
"build": "yarn print:name && yarn clear && yarn build:gjsify && yarn build:types && yarn rename:js",
"build:gjsify": "gjsify build --library '**/*.{ts,js,mjs,mts}' --exclude 'lib/**' '**/*.d.ts' 'node/integrationtest/**/*' '**/*_{test,example}.{ts,js,mjs,mts}' --log-level error",
"build:types": "tsc --project tsconfig.types.json || exit 0",
"build:test": "yarn build:test:gjs",
"build:test:gjs": "gjsify build test.mts --app gjs --outfile test.gjs.mjs",
"test": "yarn build:gjsify && yarn build:test && yarn test:gjs",
"test:gjs": "gjs -m test.gjs.mjs",
"git:upstream:init": "git remote add upstream https://github.com/denoland/deno_std.git || exit 0",
"git:upstream:diff": "open-cli https://github.com/gjsify/deno_std/compare/main...denoland:deno_std:main",
"git:upstream:_merge": "git fetch upstream && git merge upstream/main",
"git:upstream:merge": "yarn git:upstream:init && yarn git:upstream:diff && yarn git:upstream:_merge"
},
"keywords": [
"gjs",
"node"
],
"files": [
"lib"
],
"devDependencies": {
"@girs/gjs": "^3.2.7",
"@gjsify/cli": "workspace:^",
"@gjsify/esbuild-plugin-transform-ext": "workspace:^",
"@gjsify/unit": "workspace:^",
"@types/node": "^20.10.6",
"open-cli": "^8.0.0",
"typescript": "^5.3.3"
},
"dependencies": {
"@gjsify/deno-runtime": "workspace:^"
}
}