@taqueria/plugin-ligo 0.56.15 → 0.57.8
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/index.d.mts +2 -0
- package/package.json +68 -68
- package/tsconfig.json +9 -1
package/index.d.mts
ADDED
package/package.json
CHANGED
|
@@ -1,69 +1,69 @@
|
|
|
1
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
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
}
|
|
2
|
+
"name": "@taqueria/plugin-ligo",
|
|
3
|
+
"version": "0.57.8",
|
|
4
|
+
"description": "A taqueria plugin for compiling LIGO smart contracts",
|
|
5
|
+
"targets": {
|
|
6
|
+
"default": {
|
|
7
|
+
"source": "./index.ts",
|
|
8
|
+
"distDir": "./",
|
|
9
|
+
"context": "node",
|
|
10
|
+
"isLibrary": true
|
|
11
|
+
}
|
|
12
|
+
},
|
|
13
|
+
"keywords": [
|
|
14
|
+
"taqueria",
|
|
15
|
+
"tezos",
|
|
16
|
+
"build",
|
|
17
|
+
"pinnaclelabs",
|
|
18
|
+
"pinnacle-labs",
|
|
19
|
+
"plugin",
|
|
20
|
+
"ligo",
|
|
21
|
+
"ligolang",
|
|
22
|
+
"smart contract",
|
|
23
|
+
"compile"
|
|
24
|
+
],
|
|
25
|
+
"author": "Taqueria",
|
|
26
|
+
"license": "Apache-2.0",
|
|
27
|
+
"repository": {
|
|
28
|
+
"type": "git",
|
|
29
|
+
"url": "https://github.com/tezostaqueria/taqueria.git",
|
|
30
|
+
"directory": "taqueria-plugin-ligo"
|
|
31
|
+
},
|
|
32
|
+
"bugs": {
|
|
33
|
+
"url": "https://github.com/tezostaqueria/taqueria/issues"
|
|
34
|
+
},
|
|
35
|
+
"homepage": "https://github.com/tezostaqueria/taqueria#readme",
|
|
36
|
+
"dependencies": {
|
|
37
|
+
"fast-glob": "^3.3.2",
|
|
38
|
+
"@taqueria/lib-ligo": "0.57.8",
|
|
39
|
+
"@taqueria/node-sdk": "0.57.8"
|
|
40
|
+
},
|
|
41
|
+
"devDependencies": {
|
|
42
|
+
"tsup": "^8.3.0",
|
|
43
|
+
"typescript": "^5.6.2"
|
|
44
|
+
},
|
|
45
|
+
"tsup": {
|
|
46
|
+
"entry": [
|
|
47
|
+
"index.ts"
|
|
48
|
+
],
|
|
49
|
+
"sourcemap": true,
|
|
50
|
+
"target": "node16",
|
|
51
|
+
"outDir": "./",
|
|
52
|
+
"dts": true,
|
|
53
|
+
"clean": false,
|
|
54
|
+
"skipNodeModulesBundle": true,
|
|
55
|
+
"platform": "node",
|
|
56
|
+
"format": [
|
|
57
|
+
"esm",
|
|
58
|
+
"cjs"
|
|
59
|
+
]
|
|
60
|
+
},
|
|
61
|
+
"gitHead": "ff58a2fc06ad233869ad6be574093c8b3b272e2e",
|
|
62
|
+
"scripts": {
|
|
63
|
+
"test": "echo \"Error: no test specified\" && exit 1",
|
|
64
|
+
"build": "npx tsc -noEmit -p ./tsconfig.json && npx tsup",
|
|
65
|
+
"pluginInfo": "npx ts-node index.ts --taqRun pluginInfo --i18n '{\"foo\":\"bar\"}' --config '{\"contractsDir\":\"contracts\",\"testsDir\": \"tests\",\"artifactsDir\": \"artifacts\"}' --projectDir ../test-project --configDir ./.taq",
|
|
66
|
+
"compile": "npx ts-node index.ts --taqRun proxy --task compile --i18n '{\"foo\":\"bar\"}' --config '{\"contractsDir\":\"contracts\",\"testsDir\": \"tests\",\"artifactsDir\": \"artifacts\"}' --projectDir ../test-project --configDir ./.taq",
|
|
67
|
+
"debugPluginInfo": "npx ts-node --inspect index.ts --taqRun pluginInfo --i18n '{\"foo\":\"bar\"}' --config '{\"contractsDir\":\"contracts\",\"testsDir\": \"tests\"}' --projectDir ../test-project --configDir ./.taq"
|
|
68
|
+
}
|
|
69
|
+
}
|
package/tsconfig.json
CHANGED
|
@@ -99,5 +99,13 @@
|
|
|
99
99
|
/* Completeness */
|
|
100
100
|
// "skipDefaultLibCheck": true, /* Skip type checking .d.ts files that are included with TypeScript. */
|
|
101
101
|
"skipLibCheck": true /* Skip type checking all .d.ts files. */
|
|
102
|
-
}
|
|
102
|
+
},
|
|
103
|
+
"references": [
|
|
104
|
+
{
|
|
105
|
+
"path": "../taqueria-sdk"
|
|
106
|
+
},
|
|
107
|
+
{
|
|
108
|
+
"path": "../taqueria-lib-ligo"
|
|
109
|
+
}
|
|
110
|
+
]
|
|
103
111
|
}
|