@jesscss/jess-parser 2.0.0-alpha.9
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/LICENSE +21 -0
- package/README.md +121 -0
- package/lib/ast/grammar.d.ts +1 -0
- package/lib/cst.cjs +14 -0
- package/lib/cst.d.ts +5 -0
- package/lib/cst.js +12 -0
- package/lib/grammar.cjs +31734 -0
- package/lib/grammar.d.ts +1 -0
- package/lib/grammar.js +31733 -0
- package/lib/index.cjs +35327 -0
- package/lib/index.d.ts +13 -0
- package/lib/index.js +35322 -0
- package/package.json +63 -0
package/package.json
ADDED
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@jesscss/jess-parser",
|
|
3
|
+
"publishConfig": {
|
|
4
|
+
"access": "public"
|
|
5
|
+
},
|
|
6
|
+
"version": "2.0.0-alpha.9",
|
|
7
|
+
"description": "Jess parser with direct canonical AST parsing and an explicit language-service CST entry",
|
|
8
|
+
"main": "lib/index.cjs",
|
|
9
|
+
"types": "lib/index.d.ts",
|
|
10
|
+
"exports": {
|
|
11
|
+
".": {
|
|
12
|
+
"types": "./lib/index.d.ts",
|
|
13
|
+
"import": "./lib/index.js",
|
|
14
|
+
"require": "./lib/index.cjs"
|
|
15
|
+
},
|
|
16
|
+
"./cst": {
|
|
17
|
+
"types": "./lib/cst.d.ts",
|
|
18
|
+
"import": "./lib/cst.js",
|
|
19
|
+
"require": "./lib/cst.cjs"
|
|
20
|
+
},
|
|
21
|
+
"./grammar": {
|
|
22
|
+
"types": "./lib/grammar.d.ts",
|
|
23
|
+
"import": "./lib/grammar.js",
|
|
24
|
+
"require": "./lib/grammar.cjs"
|
|
25
|
+
},
|
|
26
|
+
"./package.json": "./package.json"
|
|
27
|
+
},
|
|
28
|
+
"files": [
|
|
29
|
+
"lib"
|
|
30
|
+
],
|
|
31
|
+
"author": "Matthew Dean",
|
|
32
|
+
"license": "MIT",
|
|
33
|
+
"dependencies": {
|
|
34
|
+
"color-name": "~2.0.0",
|
|
35
|
+
"@jesscss/css-parser": "2.0.0-alpha.9"
|
|
36
|
+
},
|
|
37
|
+
"peerDependencies": {
|
|
38
|
+
"parseman": "^0.30.0",
|
|
39
|
+
"@jesscss/core": "2.0.0-alpha.9"
|
|
40
|
+
},
|
|
41
|
+
"peerDependenciesMeta": {
|
|
42
|
+
"@jesscss/core": {
|
|
43
|
+
"optional": true
|
|
44
|
+
}
|
|
45
|
+
},
|
|
46
|
+
"devDependencies": {
|
|
47
|
+
"@types/color-name": "^1.1.1",
|
|
48
|
+
"parseman": "0.30.0",
|
|
49
|
+
"@jesscss/core": "2.0.0-alpha.9",
|
|
50
|
+
"@jesscss/internal-css-recognition": "0.0.0"
|
|
51
|
+
},
|
|
52
|
+
"type": "module",
|
|
53
|
+
"module": "lib/index.js",
|
|
54
|
+
"scripts": {
|
|
55
|
+
"ci": "pnpm build && pnpm test",
|
|
56
|
+
"build": "pnpm clean && pnpm compile",
|
|
57
|
+
"clean": "shx rm -rf ./lib tsconfig.tsbuildinfo",
|
|
58
|
+
"compile": "tsdown --tsconfig tsconfig.build.json --no-dts && tsc -p tsconfig.build.json --emitDeclarationOnly --noCheck",
|
|
59
|
+
"test": "vitest --run --passWithNoTests",
|
|
60
|
+
"lint:fix": "eslint --fix '**/*.{js,ts}'",
|
|
61
|
+
"lint": "eslint '**/*.{js,ts}'"
|
|
62
|
+
}
|
|
63
|
+
}
|