@wcstack/typescript 1.32.0 → 2.0.0

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/package.json CHANGED
@@ -1,84 +1,84 @@
1
- {
2
- "name": "@wcstack/typescript",
3
- "version": "1.32.0",
4
- "description": "TypeScript tooling for wcstack apps: wcs-schema generates the sidecar stateSchema from a typed state file, so wcs-validate checks data-wcs paths against real types in CI and every editor.",
5
- "type": "module",
6
- "main": "./dist/index.esm.js",
7
- "module": "./dist/index.esm.js",
8
- "types": "./dist/index.d.ts",
9
- "exports": {
10
- ".": {
11
- "types": "./dist/index.d.ts",
12
- "import": "./dist/index.esm.js"
13
- }
14
- },
15
- "bin": {
16
- "wcs-schema": "./dist/wcs-schema.mjs",
17
- "wcs-tsc": "./dist/wcs-tsc.mjs"
18
- },
19
- "files": [
20
- "dist"
21
- ],
22
- "scripts": {
23
- "clean": "rimraf dist .tsc-out",
24
- "build": "rimraf dist .tsc-out && tsc && rollup -c && node scripts/build-schema-core.mjs",
25
- "test": "vitest run",
26
- "test:watch": "vitest",
27
- "test:coverage": "vitest run --coverage",
28
- "lint": "eslint src"
29
- },
30
- "keywords": [
31
- "web-components",
32
- "wcstack",
33
- "typescript",
34
- "json-schema",
35
- "state",
36
- "data-wcs",
37
- "cli",
38
- "static-analysis"
39
- ],
40
- "author": "mogera551",
41
- "homepage": "https://wcstack.github.io",
42
- "repository": {
43
- "type": "git",
44
- "url": "https://github.com/wcstack/wcstack.git",
45
- "directory": "packages/typescript"
46
- },
47
- "bugs": {
48
- "url": "https://github.com/wcstack/wcstack/issues"
49
- },
50
- "license": "MIT",
51
- "peerDependencies": {
52
- "@volar/language-core": "~2.4.0",
53
- "@volar/typescript": "~2.4.0",
54
- "typescript": ">=5.0"
55
- },
56
- "peerDependenciesMeta": {
57
- "@volar/language-core": {
58
- "optional": true
59
- },
60
- "@volar/typescript": {
61
- "optional": true
62
- }
63
- },
64
- "devDependencies": {
65
- "@eslint/js": "^9.39.1",
66
- "@volar/language-core": "~2.4.0",
67
- "@volar/typescript": "~2.4.0",
68
- "@rollup/plugin-json": "^6.1.0",
69
- "@rollup/plugin-typescript": "^11.1.6",
70
- "@types/node": "^22.10.0",
71
- "@typescript-eslint/eslint-plugin": "^8.33.1",
72
- "@typescript-eslint/parser": "^8.33.1",
73
- "@vitest/coverage-v8": "^4.0.15",
74
- "eslint": "^9.39.1",
75
- "globals": "^16.2.0",
76
- "rimraf": "^6.0.1",
77
- "rollup": "^4.22.4",
78
- "rollup-plugin-dts": "^6.1.1",
79
- "tslib": "^2.8.1",
80
- "typescript": "^5.9.3",
81
- "typescript-eslint": "^8.49.0",
82
- "vitest": "^4.0.15"
83
- }
84
- }
1
+ {
2
+ "name": "@wcstack/typescript",
3
+ "version": "2.0.0",
4
+ "description": "TypeScript tooling for wcstack apps: wcs-schema generates the sidecar stateSchema from a typed state file, so wcs-validate checks data-wcs paths against real types in CI and every editor.",
5
+ "type": "module",
6
+ "main": "./dist/index.esm.js",
7
+ "module": "./dist/index.esm.js",
8
+ "types": "./dist/index.d.ts",
9
+ "exports": {
10
+ ".": {
11
+ "types": "./dist/index.d.ts",
12
+ "import": "./dist/index.esm.js"
13
+ }
14
+ },
15
+ "bin": {
16
+ "wcs-schema": "./dist/wcs-schema.mjs",
17
+ "wcs-tsc": "./dist/wcs-tsc.mjs"
18
+ },
19
+ "files": [
20
+ "dist"
21
+ ],
22
+ "scripts": {
23
+ "clean": "rimraf dist .tsc-out",
24
+ "build": "rimraf dist .tsc-out && tsc && rollup -c && node scripts/build-schema-core.mjs",
25
+ "test": "vitest run",
26
+ "test:watch": "vitest",
27
+ "test:coverage": "vitest run --coverage",
28
+ "lint": "eslint src"
29
+ },
30
+ "keywords": [
31
+ "web-components",
32
+ "wcstack",
33
+ "typescript",
34
+ "json-schema",
35
+ "state",
36
+ "data-wcs",
37
+ "cli",
38
+ "static-analysis"
39
+ ],
40
+ "author": "mogera551",
41
+ "homepage": "https://wcstack.github.io",
42
+ "repository": {
43
+ "type": "git",
44
+ "url": "https://github.com/wcstack/wcstack.git",
45
+ "directory": "packages/typescript"
46
+ },
47
+ "bugs": {
48
+ "url": "https://github.com/wcstack/wcstack/issues"
49
+ },
50
+ "license": "MIT",
51
+ "peerDependencies": {
52
+ "@volar/language-core": "~2.4.0",
53
+ "@volar/typescript": "~2.4.0",
54
+ "typescript": ">=5.0"
55
+ },
56
+ "peerDependenciesMeta": {
57
+ "@volar/language-core": {
58
+ "optional": true
59
+ },
60
+ "@volar/typescript": {
61
+ "optional": true
62
+ }
63
+ },
64
+ "devDependencies": {
65
+ "@eslint/js": "^9.39.1",
66
+ "@volar/language-core": "~2.4.0",
67
+ "@volar/typescript": "~2.4.0",
68
+ "@rollup/plugin-json": "^6.1.0",
69
+ "@rollup/plugin-typescript": "^11.1.6",
70
+ "@types/node": "^22.10.0",
71
+ "@typescript-eslint/eslint-plugin": "^8.33.1",
72
+ "@typescript-eslint/parser": "^8.33.1",
73
+ "@vitest/coverage-v8": "^4.0.15",
74
+ "eslint": "^9.39.1",
75
+ "globals": "^16.2.0",
76
+ "rimraf": "^6.0.1",
77
+ "rollup": "^4.22.4",
78
+ "rollup-plugin-dts": "^6.1.1",
79
+ "tslib": "^2.8.1",
80
+ "typescript": "^5.9.3",
81
+ "typescript-eslint": "^8.49.0",
82
+ "vitest": "^4.0.15"
83
+ }
84
+ }