-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.77 KB
/
Copy pathpackage.json
File metadata and controls
88 lines (88 loc) · 2.77 KB
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "@spacedevin/deck",
"version": "0.1.0",
"type": "module",
"description": ".deck language only \u2014 tokenize, parse, format, registries, highlight classify",
"license": "PIF",
"author": "spacedevin",
"repository": {
"type": "git",
"url": "https://github.com/spacedevin/deck.git"
},
"publishConfig": {
"access": "public"
},
"tish": {
"module": "./src/index.tish"
},
"main": "./dist/deck.js",
"module": "./dist/deck.js",
"exports": {
".": {
"tish": "./src/index.tish",
"import": "./dist/deck.js",
"require": "./dist/deck.js",
"default": "./dist/deck.js"
},
"./grammar": "./docs/DECK_GRAMMAR.md",
"./extension": "./docs/DECK_EXTENSION.md",
"./host": "./docs/HOST.md",
"./package.json": "./package.json"
},
"files": [
"src/",
"dist/",
"docs/",
"examples/",
"fixtures/",
"conformance/",
"README.md",
"AGENTS.md",
"LICENSE"
],
"scripts": {
"build": "tish build src/index.tish -o dist/deck.js --target js && node scripts/append-exports.mjs",
"tishversion": "tish -V",
"test": "npm run build && node test/coverage.mjs && node test/conformance.mjs && npm run test:conformance:tish && tish build --target js test/smoke.tish -o /tmp/spacedevin-deck-smoke.js && node /tmp/spacedevin-deck-smoke.js",
"test:conformance": "npm run build && node test/conformance.mjs",
"conformance:update": "npm run build && node test/conformance.mjs --update",
"test:coverage": "npm run build && c8 --check-coverage --lines 100 --functions 100 --statements 100 --include 'dist/deck.js' node test/coverage.mjs",
"examples": "tish build --target js examples/01-parse.tish -o /tmp/deck-ex01.js && node /tmp/deck-ex01.js && tish build --target js examples/02-host-boot.tish -o /tmp/deck-ex02.js && node /tmp/deck-ex02.js && tish build --target js examples/03-helpers.tish -o /tmp/deck-ex03.js && node /tmp/deck-ex03.js",
"prepack": "npm run build",
"prepublishOnly": "npm run build",
"build:rust": "node scripts/build-rust.mjs",
"test:rust": "npm run build:rust && cd crate && cargo test",
"test:conformance:tish": "tish run test/conformance.tish"
},
"c8": {
"reporter": [
"text",
"text-summary"
],
"include": [
"dist/deck.js"
]
},
"engines": {
"node": ">=22"
},
"keywords": [
"deck",
"tish",
"parser",
"patch-language",
"live-coding"
],
"peerDependencies": {
"@tishlang/tish": ">=3.2.2"
},
"devDependencies": {
"@semantic-release/commit-analyzer": "13.0.1",
"@semantic-release/github": "12.0.6",
"@semantic-release/npm": "13.1.5",
"@semantic-release/release-notes-generator": "14.1.0",
"@tishlang/tish": "^3.2.2",
"c8": "^10.1.3",
"semantic-release": "25.0.3"
}
}