@latticexyz/schema-type 2.0.0-alpha.79 → 2.0.0-alpha.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.
Files changed (1) hide show
  1. package/package.json +12 -14
package/package.json CHANGED
@@ -1,31 +1,29 @@
1
1
  {
2
2
  "name": "@latticexyz/schema-type",
3
- "license": "MIT",
4
- "version": "2.0.0-alpha.79+cd224a52",
3
+ "version": "2.0.0-alpha.8+fbe2c897",
5
4
  "description": "SchemaType enum for various languages",
6
- "main": "src/typescript/index.ts",
7
- "source": "src/typescript/index.ts",
8
- "type": "module",
9
5
  "repository": {
10
6
  "type": "git",
11
7
  "url": "https://github.com/latticexyz/mud.git",
12
8
  "directory": "packages/schema-type"
13
9
  },
10
+ "license": "MIT",
11
+ "type": "module",
12
+ "main": "src/typescript/index.ts",
13
+ "source": "src/typescript/index.ts",
14
14
  "scripts": {
15
- "prepare": "yarn build",
16
- "test": "yarn test:solidity && yarn test:typescript",
15
+ "build": "pnpm build:solidity && pnpm build:typescript",
16
+ "build:solidity": "echo 'removing previous output' && rimraf out && echo 'build solidity' && forge build",
17
+ "build:typescript": "echo 'build typescript' && tsc",
18
+ "release": "npm publish --access=public",
19
+ "test": "pnpm test:solidity && pnpm test:typescript",
17
20
  "test:solidity": "forge test",
18
- "test:typescript": "tsc --noEmit",
19
- "build": "yarn build:solidity && yarn build:typescript",
20
- "build:solidity": "rimraf out && forge build",
21
- "build:typescript": "tsc",
22
- "link": "yarn link",
23
- "release": "npm publish --access=public"
21
+ "test:typescript": "tsc --noEmit"
24
22
  },
25
23
  "devDependencies": {
26
24
  "ds-test": "https://github.com/dapphub/ds-test.git#c9ce3f25bde29fc5eb9901842bf02850dfd2d084",
27
25
  "forge-std": "https://github.com/foundry-rs/forge-std.git#b4f121555729b3afb3c5ffccb62ff4b6e2818fd3",
28
26
  "rimraf": "^3.0.2"
29
27
  },
30
- "gitHead": "cd224a5244ee55316d4b95a21007a8076adefe6e"
28
+ "gitHead": "fbe2c897aaf2e88c02ce9031c06dae4560c3cf69"
31
29
  }