pulse-js-framework 1.2.0 → 1.4.1

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.js CHANGED
@@ -11,7 +11,7 @@ export * from './runtime/index.js';
11
11
  export { compile, parse, tokenize } from './compiler/index.js';
12
12
 
13
13
  // Version
14
- export const VERSION = '1.0.0';
14
+ export const VERSION = '1.4.1';
15
15
 
16
16
  // Default export
17
17
  export default {
package/package.json CHANGED
@@ -1,65 +1,68 @@
1
- {
2
- "name": "pulse-js-framework",
3
- "version": "1.2.0",
4
- "description": "A declarative DOM framework with CSS selector-based structure and reactive pulsations",
5
- "type": "module",
6
- "main": "index.js",
7
- "bin": {
8
- "pulse": "cli/index.js"
9
- },
10
- "exports": {
11
- ".": "./index.js",
12
- "./runtime": "./runtime/index.js",
13
- "./runtime/*": "./runtime/*.js",
14
- "./compiler": "./compiler/index.js",
15
- "./vite": "./loader/vite-plugin.js"
16
- },
17
- "files": [
18
- "index.js",
19
- "cli/",
20
- "runtime/",
21
- "compiler/",
22
- "loader/",
23
- "mobile/",
24
- "README.md",
25
- "LICENSE"
26
- ],
27
- "scripts": {
28
- "test": "npm run test:compiler && npm run test:pulse && npm run test:dom",
29
- "test:compiler": "node test/compiler.test.js",
30
- "test:pulse": "node test/pulse.test.js",
31
- "test:dom": "node test/dom.test.js",
32
- "build:netlify": "node scripts/build-netlify.js"
33
- },
34
- "keywords": [
35
- "framework",
36
- "frontend",
37
- "reactive",
38
- "declarative",
39
- "dom",
40
- "pulse",
41
- "css-selectors",
42
- "dsl",
43
- "ui",
44
- "javascript",
45
- "spa",
46
- "signals"
47
- ],
48
- "author": "Your Name <your.email@example.com>",
49
- "license": "MIT",
50
- "repository": {
51
- "type": "git",
52
- "url": "git+https://github.com/vincenthirtz/pulse-js-framework.git"
53
- },
54
- "homepage": "https://github.com/vincenthirtz/pulse-js-framework#readme",
55
- "bugs": {
56
- "url": "https://github.com/vincenthirtz/pulse-js-framework/issues"
57
- },
58
- "engines": {
59
- "node": ">=18.0.0"
60
- },
61
- "dependencies": {},
62
- "devDependencies": {
63
- "linkedom": "^0.16.8"
64
- }
65
- }
1
+ {
2
+ "name": "pulse-js-framework",
3
+ "version": "1.4.1",
4
+ "description": "A declarative DOM framework with CSS selector-based structure and reactive pulsations",
5
+ "type": "module",
6
+ "main": "index.js",
7
+ "bin": {
8
+ "pulse": "cli/index.js"
9
+ },
10
+ "exports": {
11
+ ".": "./index.js",
12
+ "./runtime": "./runtime/index.js",
13
+ "./runtime/*": "./runtime/*.js",
14
+ "./compiler": "./compiler/index.js",
15
+ "./vite": "./loader/vite-plugin.js"
16
+ },
17
+ "files": [
18
+ "index.js",
19
+ "cli/",
20
+ "runtime/",
21
+ "compiler/",
22
+ "loader/",
23
+ "mobile/",
24
+ "README.md",
25
+ "LICENSE"
26
+ ],
27
+ "scripts": {
28
+ "test": "npm run test:compiler && npm run test:pulse && npm run test:dom && npm run test:lint && npm run test:format && npm run test:analyze",
29
+ "test:compiler": "node test/compiler.test.js",
30
+ "test:pulse": "node test/pulse.test.js",
31
+ "test:dom": "node test/dom.test.js",
32
+ "test:lint": "node test/lint.test.js",
33
+ "test:format": "node test/format.test.js",
34
+ "test:analyze": "node test/analyze.test.js",
35
+ "build:netlify": "node scripts/build-netlify.js"
36
+ },
37
+ "keywords": [
38
+ "framework",
39
+ "frontend",
40
+ "reactive",
41
+ "declarative",
42
+ "dom",
43
+ "pulse",
44
+ "css-selectors",
45
+ "dsl",
46
+ "ui",
47
+ "javascript",
48
+ "spa",
49
+ "signals"
50
+ ],
51
+ "author": "Vincent Hirtz <hirtzvincent@gmail.com>",
52
+ "license": "MIT",
53
+ "repository": {
54
+ "type": "git",
55
+ "url": "git+https://github.com/vincenthirtz/pulse-js-framework.git"
56
+ },
57
+ "homepage": "https://github.com/vincenthirtz/pulse-js-framework#readme",
58
+ "bugs": {
59
+ "url": "https://github.com/vincenthirtz/pulse-js-framework/issues"
60
+ },
61
+ "engines": {
62
+ "node": ">=18.0.0"
63
+ },
64
+ "dependencies": {},
65
+ "devDependencies": {
66
+ "linkedom": "^0.16.8"
67
+ }
68
+ }